結果

問題 No.63 ポッキーゲーム
ユーザー Luoto-green
提出日時 2017-07-03 11:22:52
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 125 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-10-05 11:05:26
合計ジャッジ時間 8,638 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11 TLE * 1 -- * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = list(map(int,input().split()))
cou = 0
while True:
    n -= m * 2
    if n < 1:
        break
    cou += 1
print(cou*m)
0