結果

問題 No.2386 Udon Coupon (Easy)
ユーザー meruuu61779999meruuu61779999
提出日時 2023-07-22 20:31:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 257 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 77,164 KB
最終ジャッジ日時 2024-09-22 20:14:05
合計ジャッジ時間 3,466 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,872 KB
testcase_01 AC 37 ms
52,444 KB
testcase_02 AC 38 ms
52,636 KB
testcase_03 AC 40 ms
52,220 KB
testcase_04 AC 37 ms
52,956 KB
testcase_05 AC 38 ms
52,412 KB
testcase_06 AC 37 ms
52,776 KB
testcase_07 AC 67 ms
76,696 KB
testcase_08 AC 37 ms
53,160 KB
testcase_09 AC 38 ms
53,492 KB
testcase_10 AC 48 ms
65,528 KB
testcase_11 AC 46 ms
63,092 KB
testcase_12 AC 63 ms
76,312 KB
testcase_13 AC 61 ms
76,708 KB
testcase_14 AC 60 ms
76,600 KB
testcase_15 AC 60 ms
76,488 KB
testcase_16 AC 58 ms
76,096 KB
testcase_17 AC 61 ms
76,584 KB
testcase_18 AC 49 ms
69,536 KB
testcase_19 AC 46 ms
62,236 KB
testcase_20 AC 57 ms
76,308 KB
testcase_21 AC 66 ms
76,512 KB
testcase_22 AC 56 ms
72,296 KB
testcase_23 AC 55 ms
72,608 KB
testcase_24 AC 46 ms
64,408 KB
testcase_25 AC 56 ms
74,688 KB
testcase_26 AC 61 ms
76,472 KB
testcase_27 AC 62 ms
77,164 KB
testcase_28 AC 52 ms
72,216 KB
testcase_29 AC 49 ms
66,980 KB
testcase_30 AC 47 ms
62,220 KB
testcase_31 AC 51 ms
70,268 KB
testcase_32 AC 45 ms
62,228 KB
testcase_33 AC 63 ms
76,624 KB
testcase_34 AC 52 ms
71,768 KB
testcase_35 AC 59 ms
76,800 KB
testcase_36 AC 63 ms
76,992 KB
testcase_37 AC 64 ms
76,440 KB
testcase_38 AC 52 ms
73,276 KB
testcase_39 AC 51 ms
69,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
P = list(map(int, input().split()))
Q = [3, 5, 10]

dp = [0] * (N + 1)
dp[0] = 0
for i in range(N):
    for p, q in zip(P, Q):
        ni = i + q
        if N < ni:
            continue
        dp[ni] = max(dp[ni], dp[i] + p)

print(dp[N])
0