結果

問題 No.2945 Namiki Secondary School
ユーザー ThetaTheta
提出日時 2024-11-20 11:48:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 53,444 KB
最終ジャッジ日時 2024-11-20 11:49:01
合計ジャッジ時間 2,462 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,848 KB
testcase_01 AC 39 ms
52,640 KB
testcase_02 AC 40 ms
52,568 KB
testcase_03 AC 39 ms
52,004 KB
testcase_04 AC 40 ms
52,052 KB
testcase_05 AC 40 ms
51,924 KB
testcase_06 AC 40 ms
52,856 KB
testcase_07 AC 41 ms
52,092 KB
testcase_08 AC 42 ms
52,336 KB
testcase_09 AC 41 ms
51,548 KB
testcase_10 AC 41 ms
52,312 KB
testcase_11 AC 41 ms
52,668 KB
testcase_12 AC 40 ms
52,088 KB
testcase_13 AC 40 ms
51,744 KB
testcase_14 AC 41 ms
51,924 KB
testcase_15 AC 40 ms
52,064 KB
testcase_16 AC 39 ms
53,444 KB
testcase_17 AC 40 ms
52,360 KB
testcase_18 AC 42 ms
52,632 KB
testcase_19 AC 41 ms
53,228 KB
testcase_20 AC 40 ms
52,124 KB
testcase_21 AC 41 ms
53,184 KB
testcase_22 AC 41 ms
52,208 KB
testcase_23 AC 43 ms
52,504 KB
testcase_24 AC 41 ms
52,764 KB
testcase_25 AC 42 ms
52,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())

    if N < 1984:
        print("None")
        return
    if N < 2008:
        print("Namiki High School")
        return
    print("Namiki Secondary School")

if __name__ == "__main__":
    main()
0