結果

問題 No.1986 Yummy
ユーザー shirokumashirokuma
提出日時 2022-08-06 18:55:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 69 bytes
コンパイル時間 575 ms
コンパイル使用メモリ 86,888 KB
実行使用メモリ 71,412 KB
最終ジャッジ日時 2023-10-14 19:26:01
合計ジャッジ時間 3,949 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 67 ms
71,020 KB
testcase_02 AC 68 ms
70,836 KB
testcase_03 WA -
testcase_04 AC 68 ms
70,912 KB
testcase_05 AC 68 ms
70,992 KB
testcase_06 AC 68 ms
70,788 KB
testcase_07 AC 68 ms
70,992 KB
testcase_08 AC 70 ms
70,836 KB
testcase_09 WA -
testcase_10 AC 69 ms
70,908 KB
testcase_11 AC 68 ms
70,712 KB
testcase_12 AC 67 ms
70,964 KB
testcase_13 WA -
testcase_14 AC 67 ms
71,028 KB
testcase_15 WA -
testcase_16 AC 68 ms
70,904 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 67 ms
70,952 KB
testcase_20 AC 68 ms
71,080 KB
testcase_21 AC 68 ms
71,192 KB
testcase_22 AC 68 ms
71,004 KB
testcase_23 AC 69 ms
70,868 KB
testcase_24 AC 69 ms
71,244 KB
testcase_25 AC 67 ms
71,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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