結果

問題 No.1231 Make a Multiple of Ten
ユーザー yvay5cqeyvay5cqe
提出日時 2020-09-28 02:53:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 458 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 102,136 KB
最終ジャッジ日時 2024-06-30 22:45:43
合計ジャッジ時間 2,754 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,828 KB
testcase_01 AC 35 ms
52,732 KB
testcase_02 AC 36 ms
52,032 KB
testcase_03 AC 37 ms
53,144 KB
testcase_04 AC 95 ms
87,164 KB
testcase_05 AC 90 ms
85,736 KB
testcase_06 AC 68 ms
78,800 KB
testcase_07 AC 95 ms
88,112 KB
testcase_08 AC 76 ms
81,060 KB
testcase_09 AC 64 ms
77,720 KB
testcase_10 AC 89 ms
86,812 KB
testcase_11 AC 98 ms
88,668 KB
testcase_12 AC 139 ms
101,700 KB
testcase_13 AC 141 ms
102,136 KB
testcase_14 AC 36 ms
52,184 KB
testcase_15 AC 141 ms
102,028 KB
権限があれば一括ダウンロードができます

ソースコード

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