結果

問題 No.1231 Make a Multiple of Ten
ユーザー lloyzlloyz
提出日時 2022-02-05 09:13:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 392 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 120,632 KB
最終ジャッジ日時 2024-06-11 13:22:39
合計ジャッジ時間 14,900 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,256 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 1,611 ms
60,928 KB
testcase_05 AC 1,355 ms
54,612 KB
testcase_06 AC 532 ms
27,960 KB
testcase_07 AC 1,649 ms
63,232 KB
testcase_08 AC 945 ms
40,636 KB
testcase_09 AC 334 ms
20,916 KB
testcase_10 AC 1,481 ms
57,228 KB
testcase_11 AC 1,771 ms
66,848 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

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