結果

問題 No.2386 Udon Coupon (Easy)
ユーザー やでな@競プロやでな@競プロ
提出日時 2023-10-08 21:41:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 345 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 67,000 KB
最終ジャッジ日時 2024-07-26 18:13:33
合計ジャッジ時間 3,780 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,768 KB
testcase_01 AC 36 ms
53,184 KB
testcase_02 AC 37 ms
52,408 KB
testcase_03 AC 38 ms
52,892 KB
testcase_04 AC 36 ms
53,340 KB
testcase_05 AC 37 ms
53,084 KB
testcase_06 AC 36 ms
53,316 KB
testcase_07 AC 57 ms
66,904 KB
testcase_08 AC 36 ms
52,504 KB
testcase_09 AC 36 ms
52,740 KB
testcase_10 AC 51 ms
64,092 KB
testcase_11 AC 51 ms
65,712 KB
testcase_12 AC 52 ms
64,944 KB
testcase_13 AC 53 ms
65,352 KB
testcase_14 AC 55 ms
66,764 KB
testcase_15 AC 52 ms
64,256 KB
testcase_16 AC 51 ms
65,160 KB
testcase_17 AC 54 ms
65,268 KB
testcase_18 AC 51 ms
64,284 KB
testcase_19 AC 52 ms
65,164 KB
testcase_20 WA -
testcase_21 AC 57 ms
66,268 KB
testcase_22 AC 55 ms
65,968 KB
testcase_23 AC 54 ms
66,532 KB
testcase_24 AC 53 ms
65,744 KB
testcase_25 AC 54 ms
65,648 KB
testcase_26 AC 56 ms
65,636 KB
testcase_27 WA -
testcase_28 AC 51 ms
64,872 KB
testcase_29 AC 53 ms
64,508 KB
testcase_30 AC 53 ms
65,140 KB
testcase_31 AC 53 ms
65,552 KB
testcase_32 AC 51 ms
64,496 KB
testcase_33 AC 56 ms
67,000 KB
testcase_34 AC 50 ms
64,156 KB
testcase_35 AC 55 ms
66,320 KB
testcase_36 AC 51 ms
63,936 KB
testcase_37 AC 56 ms
66,408 KB
testcase_38 AC 51 ms
65,636 KB
testcase_39 AC 51 ms
63,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a,b,c = map(int,input().split())

dp = [0]*(n+1)

for i in range(n):
    if not (i%3 == 0 or i%5 == 0 or i%10 == 0):
        continue
    if i+3 <= n:
        dp[i+3] = max(dp[i+3],dp[i]+a)
    if i+5 <= n:
        dp[i+5] = max(dp[i+5],dp[i]+b)
    if i+10 <= n:
        dp[i+10] = max(dp[i+10],dp[i]+c)
        
print(max(dp))
0