結果

問題 No.1453 手助け
ユーザー convexineqconvexineq
提出日時 2021-05-05 21:27:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 156 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 59,380 KB
最終ジャッジ日時 2024-09-13 14:14:26
合計ジャッジ時間 2,200 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 39 ms
52,128 KB
testcase_02 AC 39 ms
52,380 KB
testcase_03 AC 42 ms
58,984 KB
testcase_04 AC 38 ms
52,000 KB
testcase_05 AC 43 ms
59,380 KB
testcase_06 AC 43 ms
59,236 KB
testcase_07 AC 43 ms
58,252 KB
testcase_08 AC 38 ms
52,412 KB
testcase_09 AC 39 ms
52,616 KB
testcase_10 AC 38 ms
53,700 KB
testcase_11 AC 38 ms
52,704 KB
testcase_12 AC 38 ms
53,276 KB
testcase_13 WA -
testcase_14 AC 38 ms
52,616 KB
testcase_15 AC 42 ms
59,176 KB
testcase_16 AC 39 ms
52,140 KB
testcase_17 AC 39 ms
52,944 KB
testcase_18 AC 42 ms
57,580 KB
testcase_19 AC 43 ms
58,856 KB
testcase_20 AC 42 ms
58,804 KB
testcase_21 AC 38 ms
51,824 KB
testcase_22 AC 38 ms
51,876 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b,c,d,e = map(int,input().split())
ans = x = d
for i in range(2,a*(b-c)+1):
    if i%10==0 and e <= x:
        x = x-e
    ans += x            
print(ans)
0