結果

問題 No.63 ポッキーゲーム
ユーザー pypypymipypypymi
提出日時 2022-02-14 14:40:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 76 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 53,152 KB
最終ジャッジ日時 2024-06-29 06:50:16
合計ジャッジ時間 2,046 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,416 KB
testcase_01 AC 31 ms
52,480 KB
testcase_02 AC 32 ms
52,512 KB
testcase_03 AC 31 ms
52,628 KB
testcase_04 AC 31 ms
52,220 KB
testcase_05 AC 32 ms
52,200 KB
testcase_06 AC 33 ms
52,412 KB
testcase_07 AC 31 ms
52,036 KB
testcase_08 AC 32 ms
51,416 KB
testcase_09 AC 32 ms
52,316 KB
testcase_10 AC 32 ms
52,220 KB
testcase_11 AC 31 ms
51,828 KB
testcase_12 AC 32 ms
52,756 KB
testcase_13 WA -
testcase_14 AC 32 ms
52,080 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 35 ms
53,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,k = map(int,input().split())
print("0") if k*2>=l else print((l//(k*2))*k)
0