結果

問題 No.1231 Make a Multiple of Ten
ユーザー yatsurugiyatsurugi
提出日時 2020-09-24 14:21:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 354 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,928 KB
最終ジャッジ日時 2024-06-28 04:53:50
合計ジャッジ時間 15,210 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 1,156 ms
20,648 KB
testcase_05 AC 967 ms
19,336 KB
testcase_06 AC 410 ms
13,996 KB
testcase_07 AC 1,198 ms
20,936 KB
testcase_08 AC 675 ms
15,780 KB
testcase_09 AC 258 ms
12,672 KB
testcase_10 AC 1,064 ms
19,656 KB
testcase_11 AC 1,249 ms
21,784 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 30 ms
10,624 KB
testcase_15 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# dp[mod] = 最大の枚数
dp = [-1] * 10
dp[0] = 0
for a in A:
    dp_tmp = [-1] * 10
    for i in range(10):
        if dp[i] == -1:
            continue
        dp_tmp[i] = max(dp[i], dp_tmp[i])
        n = (i + a) % 10
        dp_tmp[n] = max(dp[i] + 1, dp_tmp[n])
    dp = dp_tmp

print(dp[0])
0