Submission #5428

#TimeUsernameProblemLanguageResultExecution timeMemory
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...