結果

問題 No.2945 Namiki Secondary School
ユーザー ゼットゼット
提出日時 2024-10-25 21:47:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 124 bytes
コンパイル時間 635 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 53,816 KB
最終ジャッジ日時 2024-10-25 21:47:31
合計ジャッジ時間 2,077 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,188 KB
testcase_01 WA -
testcase_02 AC 34 ms
52,620 KB
testcase_03 AC 36 ms
52,064 KB
testcase_04 AC 35 ms
52,072 KB
testcase_05 AC 35 ms
52,576 KB
testcase_06 AC 35 ms
51,748 KB
testcase_07 AC 40 ms
52,432 KB
testcase_08 AC 35 ms
52,988 KB
testcase_09 AC 36 ms
52,136 KB
testcase_10 AC 36 ms
53,740 KB
testcase_11 AC 35 ms
52,332 KB
testcase_12 AC 35 ms
52,448 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 35 ms
52,680 KB
testcase_19 AC 35 ms
52,368 KB
testcase_20 AC 35 ms
52,132 KB
testcase_21 WA -
testcase_22 AC 36 ms
52,732 KB
testcase_23 WA -
testcase_24 AC 39 ms
52,460 KB
testcase_25 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
if N>=2008:
  print('Namiki Second School')
elif N>=1984:
  print('Namiki High School')
else:
  print('None')
0