結果

問題 No.2386 Udon Coupon (Easy)
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-23 17:23:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 70,300 KB
最終ジャッジ日時 2024-09-24 18:54:56
合計ジャッジ時間 4,069 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
55,360 KB
testcase_01 AC 45 ms
56,416 KB
testcase_02 AC 46 ms
56,364 KB
testcase_03 AC 45 ms
55,804 KB
testcase_04 AC 46 ms
56,056 KB
testcase_05 AC 46 ms
57,308 KB
testcase_06 AC 47 ms
56,428 KB
testcase_07 AC 60 ms
67,936 KB
testcase_08 AC 47 ms
55,768 KB
testcase_09 AC 47 ms
56,096 KB
testcase_10 AC 56 ms
65,460 KB
testcase_11 AC 55 ms
65,000 KB
testcase_12 AC 60 ms
67,368 KB
testcase_13 AC 60 ms
68,340 KB
testcase_14 AC 58 ms
66,680 KB
testcase_15 AC 64 ms
70,300 KB
testcase_16 AC 62 ms
68,696 KB
testcase_17 AC 58 ms
67,368 KB
testcase_18 AC 60 ms
67,892 KB
testcase_19 AC 54 ms
65,420 KB
testcase_20 AC 55 ms
65,852 KB
testcase_21 AC 57 ms
67,008 KB
testcase_22 AC 57 ms
66,404 KB
testcase_23 AC 55 ms
66,460 KB
testcase_24 AC 54 ms
64,864 KB
testcase_25 AC 54 ms
65,576 KB
testcase_26 AC 57 ms
68,512 KB
testcase_27 AC 58 ms
68,160 KB
testcase_28 AC 60 ms
68,608 KB
testcase_29 AC 55 ms
65,412 KB
testcase_30 AC 53 ms
66,396 KB
testcase_31 AC 55 ms
65,400 KB
testcase_32 AC 54 ms
64,604 KB
testcase_33 AC 57 ms
67,664 KB
testcase_34 AC 61 ms
68,248 KB
testcase_35 AC 57 ms
67,576 KB
testcase_36 AC 63 ms
69,576 KB
testcase_37 AC 59 ms
67,472 KB
testcase_38 AC 61 ms
68,052 KB
testcase_39 AC 58 ms
66,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N = int(input())
X = list(map(int,input().split()))
dp = [0]*(N+2)
for i in range(N):
    
    dp[min(i+3,N+1)] = max(dp[min(i+3,N+1)],dp[i]+X[0])
    dp[min(i+5,N+1)] = max(dp[min(i+5,N+1)],dp[i]+X[1])
    dp[min(i+10,N+1)] = max(dp[min(i+10,N+1)],dp[i]+X[2])

print(max(dp[:N+1]))
0