結果

問題 No.1231 Make a Multiple of Ten
ユーザー MineMine
提出日時 2020-09-22 16:31:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 221 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 119,288 KB
最終ジャッジ日時 2024-06-26 05:59:23
合計ジャッジ時間 2,897 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,272 KB
testcase_01 AC 42 ms
54,272 KB
testcase_02 AC 43 ms
53,760 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 125 ms
93,952 KB
testcase_05 AC 120 ms
92,268 KB
testcase_06 AC 87 ms
84,468 KB
testcase_07 AC 124 ms
95,104 KB
testcase_08 AC 100 ms
89,892 KB
testcase_09 AC 68 ms
73,984 KB
testcase_10 AC 118 ms
93,816 KB
testcase_11 AC 138 ms
94,812 KB
testcase_12 AC 216 ms
117,864 KB
testcase_13 AC 221 ms
119,252 KB
testcase_14 AC 43 ms
53,504 KB
testcase_15 AC 220 ms
119,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
n = int(input())
a = list(map(int, input().split()))
dp = [[0]*10 for i in range(n+1)]

for i in range(n):
    dp[i+1][a[i]%10] += 1
    for g in range(10):
        dp[i+1][g%10] = max(dp[i][g], dp[i+1][g%10])
        if dp[i][g] != 0:
            dp[i+1][(g+a[i])%10] = max(dp[i][g]+1, dp[i+1][(g+a[i])%10])

print(dp[n][0])
0