結果

問題 No.63 ポッキーゲーム
ユーザー kouyou1027kouyou1027
提出日時 2018-11-26 14:51:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 107 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,992 KB
最終ジャッジ日時 2024-12-30 09:53:09
合計ジャッジ時間 43,514 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
20,992 KB
testcase_01 AC 32 ms
20,864 KB
testcase_02 AC 31 ms
20,992 KB
testcase_03 AC 33 ms
10,624 KB
testcase_04 AC 32 ms
10,368 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 34 ms
10,496 KB
testcase_07 AC 55 ms
10,496 KB
testcase_08 AC 43 ms
10,496 KB
testcase_09 AC 178 ms
10,496 KB
testcase_10 AC 1,310 ms
10,496 KB
testcase_11 TLE -
testcase_12 AC 2,506 ms
10,624 KB
testcase_13 TLE -
testcase_14 AC 2,587 ms
10,496 KB
testcase_15 AC 2,486 ms
10,496 KB
testcase_16 AC 369 ms
10,368 KB
testcase_17 TLE -
testcase_18 AC 261 ms
10,624 KB
testcase_19 TLE -
testcase_20 AC 2,144 ms
10,624 KB
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b = map(int, input().split())
cnt = 0

while a > b * 2:
    a -= b * 2
    cnt += 1

print(b * cnt)
    
0