結果

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

ソースコード

diff #

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