結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
52,912 KB
testcase_01 WA -
testcase_02 AC 30 ms
52,612 KB
testcase_03 WA -
testcase_04 AC 30 ms
51,872 KB
testcase_05 WA -
testcase_06 AC 31 ms
52,156 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 30 ms
53,096 KB
testcase_10 WA -
testcase_11 AC 29 ms
52,832 KB
testcase_12 AC 32 ms
51,832 KB
testcase_13 AC 29 ms
53,088 KB
testcase_14 AC 30 ms
52,112 KB
testcase_15 AC 32 ms
52,036 KB
testcase_16 AC 31 ms
52,272 KB
testcase_17 AC 30 ms
51,816 KB
testcase_18 AC 29 ms
53,084 KB
testcase_19 AC 30 ms
52,272 KB
testcase_20 AC 30 ms
52,784 KB
testcase_21 AC 29 ms
52,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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