結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 1,135 ms
20,660 KB
testcase_05 AC 1,010 ms
19,472 KB
testcase_06 AC 404 ms
14,136 KB
testcase_07 AC 1,176 ms
21,076 KB
testcase_08 AC 700 ms
15,788 KB
testcase_09 AC 251 ms
12,592 KB
testcase_10 AC 1,018 ms
20,056 KB
testcase_11 AC 1,246 ms
21,928 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 30 ms
10,752 KB
testcase_15 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int, input().split()))
for i in range(N):
    a[i] = a[i] % 10
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