結果

問題 No.1231 Make a Multiple of Ten
ユーザー lloyzlloyz
提出日時 2022-02-05 09:14:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 118,412 KB
最終ジャッジ日時 2024-06-11 13:22:42
合計ジャッジ時間 3,007 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,352 KB
testcase_01 AC 35 ms
52,480 KB
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 131 ms
91,036 KB
testcase_05 AC 117 ms
88,704 KB
testcase_06 AC 77 ms
80,696 KB
testcase_07 AC 132 ms
91,736 KB
testcase_08 AC 95 ms
84,260 KB
testcase_09 AC 68 ms
79,412 KB
testcase_10 AC 121 ms
89,984 KB
testcase_11 AC 140 ms
92,828 KB
testcase_12 AC 218 ms
108,544 KB
testcase_13 AC 221 ms
117,808 KB
testcase_14 AC 37 ms
51,840 KB
testcase_15 AC 217 ms
118,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

INF = 10**10
DP = [[-INF for _ in range(10)] for _ in range(n + 1)]
DP[0][0] = 0
for i in range(n):
    for j in range(10):
        if DP[i][j] == -INF:
            continue
        DP[i + 1][j] = max(DP[i + 1][j], DP[i][j])
        r = (j + A[i]) % 10
        DP[i + 1][r] = max(DP[i + 1][r], DP[i][j] + 1)
print(DP[n][0])
0