結果

問題 No.1231 Make a Multiple of Ten
ユーザー zer0zer0
提出日時 2020-09-21 17:49:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 282 bytes
コンパイル時間 104 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,396 KB
最終ジャッジ日時 2024-06-24 11:49:41
合計ジャッジ時間 16,102 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 1,213 ms
20,908 KB
testcase_05 AC 1,023 ms
19,344 KB
testcase_06 AC 425 ms
14,128 KB
testcase_07 AC 1,267 ms
21,684 KB
testcase_08 AC 723 ms
15,664 KB
testcase_09 AC 267 ms
12,716 KB
testcase_10 AC 1,107 ms
19,928 KB
testcase_11 AC 1,364 ms
22,532 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 30 ms
10,880 KB
testcase_15 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [-1] * 10
dp[0] = 0
for i in range(N):
    cdp = dp[:]
    for j in range(10):
        if cdp[j] != -1:
            dp[(j + a[i]) % 10] = max(dp[(j + a[i]) % 10], cdp[j] + 1)
        dp[j] = max(dp[j], cdp[j])

print(dp[0])
0