結果

問題 No.1231 Make a Multiple of Ten
ユーザー yvay5cqeyvay5cqe
提出日時 2020-09-28 02:53:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 325 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 27,396 KB
最終ジャッジ日時 2024-06-30 22:44:29
合計ジャッジ時間 17,094 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 1,193 ms
18,056 KB
testcase_05 AC 1,046 ms
17,176 KB
testcase_06 AC 434 ms
13,256 KB
testcase_07 AC 1,225 ms
19,212 KB
testcase_08 AC 723 ms
14,312 KB
testcase_09 AC 268 ms
12,160 KB
testcase_10 AC 1,112 ms
17,608 KB
testcase_11 AC 1,314 ms
19,660 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 30 ms
10,752 KB
testcase_15 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = map(int, input().split())
dp = [-1 for _ in range(10)]
dp[0] = 0
for a in A:
    tmp = [-1 for _ in range(10)]
    for i in range(10):
        if dp[i] == -1:
            continue
        tmp[i] = max(tmp[i], dp[i])
        tmp[(i + a) % 10] = max(tmp[(i + a) % 10], dp[i] + 1)
    dp = tmp
print(dp[0])
0