結果

問題 No.2945 Namiki Secondary School
ユーザー rlangevinrlangevin
提出日時 2024-10-25 21:21:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 140 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 53,720 KB
最終ジャッジ日時 2024-10-25 21:21:40
合計ジャッジ時間 2,108 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,088 KB
testcase_01 AC 37 ms
52,928 KB
testcase_02 AC 37 ms
52,196 KB
testcase_03 AC 38 ms
52,684 KB
testcase_04 AC 37 ms
52,440 KB
testcase_05 AC 37 ms
52,700 KB
testcase_06 AC 36 ms
53,500 KB
testcase_07 AC 38 ms
52,124 KB
testcase_08 AC 38 ms
52,504 KB
testcase_09 AC 38 ms
53,232 KB
testcase_10 AC 37 ms
52,072 KB
testcase_11 AC 38 ms
52,272 KB
testcase_12 AC 37 ms
51,756 KB
testcase_13 AC 37 ms
52,688 KB
testcase_14 AC 38 ms
52,008 KB
testcase_15 AC 37 ms
52,256 KB
testcase_16 AC 38 ms
52,348 KB
testcase_17 AC 37 ms
52,216 KB
testcase_18 WA -
testcase_19 AC 38 ms
52,608 KB
testcase_20 AC 38 ms
51,952 KB
testcase_21 WA -
testcase_22 AC 38 ms
52,348 KB
testcase_23 AC 37 ms
52,692 KB
testcase_24 AC 38 ms
51,888 KB
testcase_25 AC 37 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
if N <= 1984:
    print("None")
elif N <= 2008:
    print("Namiki High School") 
else:
    print("Namiki Secondary School")
0