제출 #5428

#제출 시각아이디문제언어결과실행 시간메모리
5428tncks0121Special graph (IZhO13_specialg)C++98
0 / 100
48 ms1080 KiB
#include <stdio.h> #include <assert.h> int main() { int n; scanf("%d", &n); while(n--) scanf("%*d"); int q; scanf("%d", &q); while(q--) { int t; scanf("%d", &t); if(t == 1) { scanf("%*d"); }else { int a, b; scanf("%d%d", &a, &b); assert(a != b); } } return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...