結果
問題 |
No.2945 Namiki Secondary School
|
ユーザー |
|
提出日時 | 2024-10-25 21:25:54 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 633 bytes |
コンパイル時間 | 236 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-10-25 21:25:59 |
合計ジャッジ時間 | 1,893 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 23 |
ソースコード
# 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()))