Submission #244007


Source Code Expand

#include <stdio.h>

int main(){
  int n;
  
  scanf("%d", &n);

  switch(n) {
  case 1: printf("2\n"); break;
  case 2: printf("3\n"); break;
  case 3: printf("4\n"); break;
  case 4: printf("5\n"); break;
  case 5: printf("6\n"); break;
  case 6: printf("7\n"); break;
  case 7: printf("8\n"); break;
  case 8: printf("9\n"); break;
  case 9: printf("10\n"); break;
  case 10: printf("11\n"); break;
  case 11: printf("12\n"); break;
  case 12: printf("13\n"); break;
  }

  return 0;
}

Submission Info

Submission Time
Task A - 来月は何月?
User ne260037
Language C (GCC 4.6.4)
Score 0
Code Size 510 Byte
Status WA
Exec Time 25 ms
Memory 800 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:6:8: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]

Judge Result

Set Name All
Score / Max Score 0 / 100
Status
AC × 11
WA × 1
Set Name Test Cases
All test_1.txt, test_10.txt, test_11.txt, test_12.txt, test_2.txt, test_3.txt, test_4.txt, test_5.txt, test_6.txt, test_7.txt, test_8.txt, test_9.txt
Case Name Status Exec Time Memory
test_1.txt AC 24 ms 796 KB
test_10.txt AC 25 ms 692 KB
test_11.txt AC 24 ms 800 KB
test_12.txt WA 24 ms 800 KB
test_2.txt AC 24 ms 708 KB
test_3.txt AC 22 ms 792 KB
test_4.txt AC 24 ms 800 KB
test_5.txt AC 24 ms 800 KB
test_6.txt AC 24 ms 696 KB
test_7.txt AC 22 ms 796 KB
test_8.txt AC 22 ms 700 KB
test_9.txt AC 25 ms 692 KB