結果

問題 No.1231 Make a Multiple of Ten
ユーザー MineMine
提出日時 2020-09-22 16:30:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 361 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 101,344 KB
最終ジャッジ日時 2024-06-26 05:59:04
合計ジャッジ時間 15,449 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
16,128 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 1,701 ms
55,180 KB
testcase_05 AC 1,487 ms
49,624 KB
testcase_06 AC 610 ms
25,924 KB
testcase_07 AC 1,764 ms
57,032 KB
testcase_08 AC 1,036 ms
36,952 KB
testcase_09 AC 371 ms
19,644 KB
testcase_10 AC 1,566 ms
51,868 KB
testcase_11 AC 1,904 ms
60,456 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

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