| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1341013 | nathlol2 | Martian DNA (IOI16_dna) | C++20 | 11 ms | 520 KiB |
#include "dna.h"
#include <bits/stdc++.h>
using namespace std;
string analyse(int n, int t){
string s;
while(1){
if(make_test(s + '0')) s += '0';
else{
s += '1';
if(!make_test(s)){
s.pop_back();
break;
}
}
}
while(s.size() != n){
if(make_test("0" + s)){
s = "0" + s;
}else{
s = "1" + s;
}
}
return s;
} | # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
