結果

問題 No.1231 Make a Multiple of Ten
ユーザー yatsurugiyatsurugi
提出日時 2020-09-24 14:22:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 546 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,008 KB
最終ジャッジ日時 2024-06-28 04:53:59
合計ジャッジ時間 2,532 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 41 ms
51,456 KB
testcase_04 AC 107 ms
88,832 KB
testcase_05 AC 99 ms
87,040 KB
testcase_06 AC 72 ms
75,648 KB
testcase_07 AC 109 ms
90,496 KB
testcase_08 AC 86 ms
81,664 KB
testcase_09 AC 64 ms
70,400 KB
testcase_10 AC 103 ms
88,576 KB
testcase_11 AC 111 ms
90,496 KB
testcase_12 AC 154 ms
107,008 KB
testcase_13 AC 162 ms
101,504 KB
testcase_14 AC 40 ms
51,584 KB
testcase_15 AC 165 ms
101,632 KB
権限があれば一括ダウンロードができます

ソースコード

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