結果

問題 No.1231 Make a Multiple of Ten
ユーザー c-yanc-yan
提出日時 2020-09-20 02:16:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 283 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,772 KB
最終ジャッジ日時 2024-06-24 00:47:13
合計ジャッジ時間 16,012 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 1,079 ms
20,772 KB
testcase_05 AC 961 ms
19,456 KB
testcase_06 AC 397 ms
14,116 KB
testcase_07 AC 1,151 ms
21,188 KB
testcase_08 AC 675 ms
15,796 KB
testcase_09 AC 245 ms
12,928 KB
testcase_10 AC 990 ms
19,912 KB
testcase_11 AC 1,250 ms
21,912 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 30 ms
10,880 KB
testcase_15 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, *A = map(int, open(0).read().split())

dp = [-1] * 10
dp[0] = 0
for a in A:
    t = [-1] * 10
    for i in range(10):
        if dp[i] == -1:
            continue
        t[i] = max(t[i], dp[i])
        n = (i + a) % 10
        t[n] = max(t[n], dp[i] + 1)
    dp = t
print(dp[0])
0