結果
| 問題 |
No.2945 Namiki Secondary School
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-10-25 21:24:47 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 632 bytes |
| コンパイル時間 | 370 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 11,008 KB |
| 最終ジャッジ日時 | 2024-10-25 21:24:50 |
| 合計ジャッジ時間 | 1,790 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 22 WA * 1 |
ソースコード
# http://radiusofcircle.blogspot.com
import sys
# time module for calculating execution time
import time
# time at the start of program execution
start = time.time()
N = int(input())
'''
N < 1984 -> None
1984 < 2008 -> Namiki High School
N > 2007 -> Namiki Secondary School
'''
if N < 1984: print('None')
elif 1984 < N < 2008: print('Namiki High School')
else: print('Namiki Secondary School')
# time at the end of program execution
end = time.time()
# printing the total time for execution
sys.stderr.write('Elapsed time: '+str(round(end - start, 3))+"s\n")
from datetime import datetime
sys.stderr.write(str(datetime.now()))