結果

問題 No.63 ポッキーゲーム
ユーザー hirayuu_ychirayuu_yc
提出日時 2023-08-22 15:36:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 49 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 53,428 KB
最終ジャッジ日時 2024-12-17 15:11:09
合計ジャッジ時間 1,946 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,892 KB
testcase_01 WA -
testcase_02 AC 36 ms
52,468 KB
testcase_03 WA -
testcase_04 AC 35 ms
52,688 KB
testcase_05 WA -
testcase_06 AC 39 ms
53,072 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 36 ms
53,192 KB
testcase_10 WA -
testcase_11 AC 35 ms
52,616 KB
testcase_12 AC 36 ms
52,576 KB
testcase_13 AC 36 ms
52,004 KB
testcase_14 AC 35 ms
53,076 KB
testcase_15 AC 36 ms
52,340 KB
testcase_16 AC 37 ms
51,828 KB
testcase_17 AC 35 ms
52,488 KB
testcase_18 AC 34 ms
52,288 KB
testcase_19 AC 37 ms
52,148 KB
testcase_20 AC 36 ms
52,424 KB
testcase_21 AC 37 ms
53,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,K=map(int,input().split())
print((L//K-1)//2*K)
0