| Problem | platonic5 |
|---|---|
| User | dumbfounded47 |
| Submission Time | 2026-01-13 21:21:33 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
platonic5.cpp:1:2: error: invalid preprocessing directive #inlcude; did you mean #include?
1 | #inlcude <bits/stdc++.h>
| ^~~~~~~
| include
platonic5.cpp: In function ‘int main()’:
platonic5.cpp:8:2: error: ‘cin’ was not declared in this scope
8 | cin >> n >> m;
| ^~~
platonic5.cpp:1:1: note: ‘std::cin’ is defined in header ‘<iostream>’; did you forget to ‘#include <iostream>’?
+++ |+#include <iostream>
1 | #inlcude <bits/stdc++.h>
platonic5.cpp:10:2: error: ‘vector’ was not declared in this scope
10 | vector<long long> P(m + 1);
| ^~~~~~
platonic5.cpp:1:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
+++ |+#include <vector>
1 | #inlcude <bits/stdc++.h>
platonic5.cpp:10:9: error: expected primary-expression before ‘long’
10 | vector<long long> P(m + 1);<