結果

問題 No.815 Are you a traveller ?
ユーザー syunsukesyunsuke
提出日時 2019-04-19 21:26:00
言語 Python3
(3.11.2 + numpy 1.24.2 + scipy 1.10.1)
結果
AC  
実行時間 15 ms / 2,000 ms
コード長 65 bytes
コンパイル時間 65 ms
実行使用メモリ 7,728 KB
最終ジャッジ日時 2023-03-31 11:08:06
合計ジャッジ時間 1,015 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,728 KB
testcase_01 AC 14 ms
7,564 KB
testcase_02 AC 14 ms
7,596 KB
testcase_03 AC 15 ms
7,672 KB
testcase_04 AC 15 ms
7,580 KB
testcase_05 AC 15 ms
7,564 KB
testcase_06 AC 14 ms
7,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
if N%2==0:
    print(N//2)
else:
    print(N//2+1)
0