# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
401290 | 2021-05-09T18:35:57 Z | victoriad | Martian DNA (IOI16_dna) | C++14 | 1 ms | 336 KB |
#include "dna.h" #include <cmath> #include <cstdio> #include <vector> #include <iostream> #include <algorithm> #include <utility> #include <queue> #include <map> #include <iomanip> #include <fstream> #include <cstdlib> using namespace std; std::string analyse(int n, int t) { vector<string>v; if(n==1){ if(make_test("0"))return "0"; return "1"; } else{ if(make_test("01")){ v.push_back("01"); } if(make_test("00")){ v.push_back("00"); } if(make_test("11")){ v.push_back("11"); } if(make_test("10")){ v.push_back("10"); } if(n==2){ return v[0]; } int l=v.size(); for(int i=0;i<l;i++){ string s=v[i]; s[2]='1'; if(make_test(s)){ v.push_back(s); if(n==3)return s; break; } s[2]=='1'; if(make_test(s)){ v.push_back(s); if(n==3)return s; break; } } int x=v.size(); for(int i=l;i<x;i++){ string s=v[i]; s[3]='1'; if(make_test(s)){ v.push_back(s); if(n==4)return s; break; } s[3]=='1'; if(make_test(s)){ v.push_back(s); if(n==4)return s; break; } } l=v.size(); for(int i=x;i<l;i++){ string s=v[i]; s[4]='1'; if(make_test(s)){ v.push_back(s); if(n==5)return s; break; } s[4]=='1'; if(make_test(s)){ v.push_back(s); if(n==5)return s; break; } } } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 204 KB | Output is correct |
2 | Correct | 1 ms | 204 KB | Output is correct |
3 | Correct | 1 ms | 204 KB | Output is correct |
4 | Correct | 1 ms | 204 KB | Output is correct |
5 | Correct | 1 ms | 208 KB | Output is correct |
6 | Correct | 1 ms | 204 KB | Output is correct |
7 | Incorrect | 1 ms | 204 KB | Wrong DNA |
8 | Incorrect | 1 ms | 204 KB | Wrong DNA |
9 | Incorrect | 1 ms | 204 KB | Wrong DNA |
10 | Incorrect | 1 ms | 204 KB | Wrong DNA |
11 | Incorrect | 1 ms | 204 KB | Wrong DNA |
12 | Incorrect | 1 ms | 204 KB | Wrong DNA |
13 | Incorrect | 1 ms | 204 KB | Wrong DNA |
14 | Incorrect | 1 ms | 204 KB | Wrong DNA |
15 | Incorrect | 1 ms | 204 KB | Wrong DNA |
16 | Incorrect | 1 ms | 204 KB | Wrong DNA |
17 | Incorrect | 1 ms | 204 KB | Wrong DNA |
18 | Incorrect | 1 ms | 204 KB | Wrong DNA |
19 | Incorrect | 1 ms | 204 KB | Wrong DNA |
20 | Incorrect | 1 ms | 204 KB | Wrong DNA |
21 | Incorrect | 1 ms | 204 KB | Wrong DNA |
22 | Incorrect | 1 ms | 204 KB | Wrong DNA |
23 | Incorrect | 1 ms | 204 KB | Wrong DNA |
24 | Incorrect | 1 ms | 204 KB | Wrong DNA |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 272 KB | Output is correct |
2 | Correct | 1 ms | 204 KB | Output is correct |
3 | Correct | 1 ms | 204 KB | Output is correct |
4 | Correct | 1 ms | 204 KB | Output is correct |
5 | Correct | 1 ms | 204 KB | Output is correct |
6 | Correct | 1 ms | 204 KB | Output is correct |
7 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
8 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
9 | Runtime error | 1 ms | 336 KB | Execution killed with signal 11 |
10 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
11 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
12 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
13 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
14 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
15 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
16 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
17 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
18 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
19 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
20 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
21 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
22 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
23 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
24 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
25 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
26 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
27 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
28 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
29 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
30 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
31 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
32 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
33 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
34 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 204 KB | Output is correct |
2 | Correct | 1 ms | 204 KB | Output is correct |
3 | Correct | 1 ms | 204 KB | Output is correct |
4 | Correct | 1 ms | 204 KB | Output is correct |
5 | Correct | 1 ms | 204 KB | Output is correct |
6 | Correct | 1 ms | 204 KB | Output is correct |
7 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
8 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
9 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
10 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
11 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
12 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
13 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
14 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
15 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
16 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
17 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
18 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
19 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
20 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
21 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
22 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
23 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
24 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
25 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
26 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
27 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
28 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
29 | Runtime error | 1 ms | 336 KB | Execution killed with signal 11 |
30 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
31 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
32 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
33 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
34 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
35 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
36 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
37 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
38 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |
39 | Runtime error | 1 ms | 332 KB | Execution killed with signal 11 |