結果

問題 No.1453 手助け
ユーザー convexineqconvexineq
提出日時 2021-05-05 21:28:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 59,320 KB
最終ジャッジ日時 2024-09-13 14:15:30
合計ジャッジ時間 1,922 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,876 KB
testcase_01 AC 37 ms
52,312 KB
testcase_02 AC 39 ms
52,332 KB
testcase_03 AC 41 ms
58,732 KB
testcase_04 AC 36 ms
52,524 KB
testcase_05 AC 41 ms
59,320 KB
testcase_06 AC 41 ms
58,272 KB
testcase_07 AC 40 ms
57,908 KB
testcase_08 AC 37 ms
52,828 KB
testcase_09 AC 37 ms
52,740 KB
testcase_10 AC 37 ms
52,544 KB
testcase_11 AC 37 ms
51,936 KB
testcase_12 AC 37 ms
52,420 KB
testcase_13 AC 37 ms
53,104 KB
testcase_14 AC 38 ms
52,908 KB
testcase_15 AC 42 ms
58,744 KB
testcase_16 AC 37 ms
52,492 KB
testcase_17 AC 37 ms
53,072 KB
testcase_18 AC 40 ms
58,668 KB
testcase_19 AC 42 ms
58,560 KB
testcase_20 AC 40 ms
58,124 KB
testcase_21 AC 37 ms
52,448 KB
testcase_22 AC 37 ms
52,572 KB
testcase_23 AC 38 ms
52,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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