結果

問題 No.815 Are you a traveller ?
ユーザー syunsukesyunsuke
提出日時 2019-04-19 21:26:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 65 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 11,832 KB
実行使用メモリ 10,168 KB
最終ジャッジ日時 2023-10-23 23:08:39
合計ジャッジ時間 889 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,168 KB
testcase_01 AC 26 ms
10,168 KB
testcase_02 AC 26 ms
10,168 KB
testcase_03 AC 26 ms
10,168 KB
testcase_04 AC 26 ms
10,168 KB
testcase_05 AC 26 ms
10,168 KB
testcase_06 AC 26 ms
10,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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