# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
282129 | 2020-08-24T03:35:50 Z | thtsshz_bgwrswh | 질문 (CEOI14_question_grader) | C++17 | 2480 ms | 48184 KB |
#include<algorithm> #include<string> using namespace std; bool first=1; string s[925]; int encode(int n,int x,int y){ int i; if(first){ first=0; s[1]="000000111111"; for(i=2;i<=920;i++){ s[i]=s[i-1]; next_permutation(s[i].begin(),s[i].end()); } } for(i=0;i<12;i++) if(s[x][i]=='1'&&s[y][i]=='0') return i+1; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2480 ms | 48184 KB | wrong answer |
2 | Incorrect | 2281 ms | 48064 KB | wrong answer |