結果

問題 No.1986 Yummy
ユーザー nikumakarenikumakare
提出日時 2022-06-24 21:22:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 57 bytes
コンパイル時間 1,536 ms
コンパイル使用メモリ 85,692 KB
実行使用メモリ 70,840 KB
最終ジャッジ日時 2023-08-08 11:27:44
合計ジャッジ時間 3,395 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
70,420 KB
testcase_01 AC 72 ms
70,584 KB
testcase_02 AC 73 ms
70,352 KB
testcase_03 AC 72 ms
70,604 KB
testcase_04 AC 72 ms
70,664 KB
testcase_05 AC 74 ms
70,840 KB
testcase_06 AC 73 ms
70,356 KB
testcase_07 AC 71 ms
70,552 KB
testcase_08 AC 71 ms
70,676 KB
testcase_09 AC 71 ms
70,616 KB
testcase_10 AC 73 ms
70,784 KB
testcase_11 AC 75 ms
70,648 KB
testcase_12 AC 77 ms
70,356 KB
testcase_13 AC 73 ms
70,412 KB
testcase_14 AC 72 ms
70,356 KB
testcase_15 AC 73 ms
70,640 KB
testcase_16 AC 75 ms
70,744 KB
testcase_17 AC 73 ms
70,592 KB
testcase_18 AC 74 ms
70,616 KB
testcase_19 AC 75 ms
70,428 KB
testcase_20 AC 74 ms
70,780 KB
testcase_21 AC 73 ms
70,644 KB
testcase_22 AC 72 ms
70,840 KB
testcase_23 AC 73 ms
70,584 KB
testcase_24 AC 72 ms
70,716 KB
testcase_25 AC 73 ms
70,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
if n&1:
    print(1)
else:
    print(n//2)
0