結果

問題 No.1231 Make a Multiple of Ten
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-13 00:37:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,455 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,624 KB
最終ジャッジ日時 2024-09-19 22:36:02
合計ジャッジ時間 10,358 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 649 ms
20,652 KB
testcase_05 AC 573 ms
19,344 KB
testcase_06 AC 246 ms
14,004 KB
testcase_07 AC 685 ms
21,320 KB
testcase_08 AC 410 ms
15,656 KB
testcase_09 AC 155 ms
12,592 KB
testcase_10 AC 604 ms
19,796 KB
testcase_11 AC 727 ms
21,788 KB
testcase_12 AC 1,342 ms
31,400 KB
testcase_13 AC 1,455 ms
32,624 KB
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 1,388 ms
32,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
inf = 10**9

dp = [-inf] * 10
dp[0] = 0

for a in A:
    nxt = [-inf] * 10
    for i in range(10):
        x = (i + a) % 10
        nxt[x] = dp[i] + 1
    dp = [max(x, y) for x, y in zip(dp, nxt)]

print(dp[0])
0