結果

問題 No.2386 Udon Coupon (Easy)
ユーザー timitimi
提出日時 2024-02-14 11:30:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 311 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 64,252 KB
最終ジャッジ日時 2024-09-28 18:44:15
合計ジャッジ時間 2,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,072 KB
testcase_01 AC 32 ms
51,824 KB
testcase_02 AC 34 ms
52,548 KB
testcase_03 AC 35 ms
52,832 KB
testcase_04 AC 36 ms
52,072 KB
testcase_05 AC 32 ms
52,332 KB
testcase_06 AC 34 ms
52,696 KB
testcase_07 AC 42 ms
62,556 KB
testcase_08 AC 34 ms
53,032 KB
testcase_09 AC 35 ms
52,460 KB
testcase_10 AC 40 ms
60,412 KB
testcase_11 AC 40 ms
60,344 KB
testcase_12 AC 43 ms
61,420 KB
testcase_13 AC 43 ms
62,804 KB
testcase_14 AC 43 ms
61,700 KB
testcase_15 AC 44 ms
62,912 KB
testcase_16 AC 43 ms
61,888 KB
testcase_17 AC 42 ms
61,108 KB
testcase_18 AC 41 ms
62,148 KB
testcase_19 AC 40 ms
60,076 KB
testcase_20 AC 43 ms
61,832 KB
testcase_21 AC 42 ms
61,856 KB
testcase_22 AC 41 ms
60,800 KB
testcase_23 AC 42 ms
60,256 KB
testcase_24 AC 39 ms
60,216 KB
testcase_25 AC 41 ms
61,360 KB
testcase_26 AC 43 ms
62,748 KB
testcase_27 AC 45 ms
61,488 KB
testcase_28 AC 45 ms
62,600 KB
testcase_29 AC 43 ms
60,596 KB
testcase_30 AC 41 ms
61,492 KB
testcase_31 AC 41 ms
62,208 KB
testcase_32 AC 41 ms
60,400 KB
testcase_33 AC 45 ms
62,780 KB
testcase_34 AC 44 ms
61,656 KB
testcase_35 AC 41 ms
61,708 KB
testcase_36 AC 45 ms
64,252 KB
testcase_37 AC 43 ms
62,880 KB
testcase_38 AC 44 ms
61,552 KB
testcase_39 AC 42 ms
61,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#H,W,N,D=map(int, input().split())
N=int(input())
A,B,C=map(int, input().split())
dp=[-10**10]*(N+1)
dp[0]=0
for i in range(N):
  if dp[i]!=-1:
    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