結果

問題 No.1231 Make a Multiple of Ten
ユーザー trineutrontrineutron
提出日時 2020-09-22 16:42:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,523 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,776 KB
最終ジャッジ日時 2024-06-26 06:13:50
合計ジャッジ時間 10,087 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 709 ms
20,764 KB
testcase_05 AC 617 ms
19,196 KB
testcase_06 AC 264 ms
14,116 KB
testcase_07 AC 743 ms
21,052 KB
testcase_08 AC 434 ms
15,644 KB
testcase_09 AC 169 ms
12,544 KB
testcase_10 AC 666 ms
19,648 KB
testcase_11 AC 785 ms
21,908 KB
testcase_12 AC 1,465 ms
31,788 KB
testcase_13 AC 1,505 ms
32,776 KB
testcase_14 AC 29 ms
10,368 KB
testcase_15 AC 1,523 ms
32,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
dp = [-10**9] * 10
dp[0] = 0
for x in a:
    dp_new = [0] * 10
    for i in range(10):
        dp_new[(i + x) % 10] = max(dp[(i + x) % 10], dp[i] + 1)
    dp = dp_new
print(dp[0])
0