QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#432098 | #5070. Check Pattern is Bad | egypt_ioi2024_01 | Compile Error | / | / | C++23 | 4.0kb | 2024-06-06 18:32:38 | 2024-06-06 18:32:38 |
Due to the privacy settings of the submitter, you are not allowed to view this code.
Details
answer.code:1:2: error: stray ‘#’ in program 1 | =#include <bits/stdc++.h> | ^ answer.code:1:1: error: expected unqualified-id before ‘=’ token 1 | =#include <bits/stdc++.h> | ^ answer.code:4:1: error: ‘mt19937’ does not name a type 4 | mt19937 rnd; | ^~~~~~~ answer.code: In function ‘int main()’: answer.code:7:5: error: ‘rnd’ was not declared in this scope 7 | rnd.seed(time(0)); | ^~~ answer.code:7:14: error: ‘time’ was not declared in this scope 7 | rnd.seed(time(0)); | ^~~~ answer.code:1:1: note: ‘time’ is defined in header ‘<ctime>’; did you forget to ‘#include <ctime>’? +++ |+#include <ctime> 1 | =#include <bits/stdc++.h> answer.code:8:5: error: ‘ios_base’ has not been declared 8 | ios_base::sync_with_stdio(false);cin.tie(0); | ^~~~~~~~ answer.code:8:38: error: ‘cin’ was not declared in this scope 8 | ios_base::sync_with_stdio(false);cin.tie(0); | ^~~ answer.code:124:9: error: ‘cout’ was not declared in this scope 124 | cout<<"NO"<<"\n"; | ^~~~ answer.code:127:5: error: ‘cout’ was not declared in this scope 127 | cout<<"YES"<<"\n"; | ^~~~