結果

問題 No.1231 Make a Multiple of Ten
ユーザー toyuzukotoyuzuko
提出日時 2020-09-21 22:53:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,545 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,056 KB
最終ジャッジ日時 2024-06-24 21:43:03
合計ジャッジ時間 10,690 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 720 ms
20,780 KB
testcase_05 AC 614 ms
19,588 KB
testcase_06 AC 283 ms
14,124 KB
testcase_07 AC 739 ms
21,316 KB
testcase_08 AC 435 ms
15,780 KB
testcase_09 AC 168 ms
12,800 KB
testcase_10 AC 655 ms
19,920 KB
testcase_11 AC 815 ms
21,920 KB
testcase_12 AC 1,466 ms
31,524 KB
testcase_13 AC 1,502 ms
33,056 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 1,545 ms
32,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

rem = [-1] * 10
rem[0] = 0

for i in range(N):
    a = A[i] % 10
    tmp = rem.copy()
    for j in range(10):
        if rem[(j - a) % 10] != -1:
            tmp[j] = max(rem[j], rem[(j - a) % 10] + 1)
    rem = tmp.copy()

print(rem[0])
0