結果

問題 No.1231 Make a Multiple of Ten
ユーザー FromBooskaFromBooska
提出日時 2023-03-12 08:43:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 205 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 118,480 KB
最終ジャッジ日時 2024-09-18 06:56:05
合計ジャッジ時間 3,468 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,620 KB
testcase_01 AC 36 ms
52,576 KB
testcase_02 AC 37 ms
52,076 KB
testcase_03 AC 38 ms
52,848 KB
testcase_04 AC 111 ms
94,252 KB
testcase_05 AC 110 ms
93,008 KB
testcase_06 AC 76 ms
83,556 KB
testcase_07 AC 113 ms
95,592 KB
testcase_08 AC 90 ms
90,368 KB
testcase_09 AC 62 ms
73,544 KB
testcase_10 AC 109 ms
94,076 KB
testcase_11 AC 118 ms
95,732 KB
testcase_12 AC 190 ms
108,604 KB
testcase_13 AC 205 ms
118,140 KB
testcase_14 AC 36 ms
53,388 KB
testcase_15 AC 199 ms
118,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ABC281Dと近い
# 2次元dp
# dp[i][j] i番目まで見て、j mod 10、の最大枚数

N = int(input())
A = list(map(int, input().split()))

INF = 10**10
dp = [[-INF]*10 for i in range(N+1)]
dp[0][0] = 0
 
for i in range(1, N+1):
    num = A[i-1]
    for j in range(10):
        # not using i-th
        dp[i][j] = max(dp[i][j], dp[i-1][j])
        # using i-th
        dp[i][(j+num)%10] = max(dp[i][(j+num)%10], dp[i-1][j]+1)
    #print(dp[i])
    
ans = dp[N][0]
print(ans)
0