結果

問題 No.1231 Make a Multiple of Ten
ユーザー ronpooronpoo
提出日時 2023-10-31 10:07:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 352 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 118,900 KB
最終ジャッジ日時 2024-09-25 17:32:40
合計ジャッジ時間 3,970 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,232 KB
testcase_01 AC 36 ms
53,076 KB
testcase_02 AC 39 ms
52,460 KB
testcase_03 AC 39 ms
52,768 KB
testcase_04 AC 118 ms
94,456 KB
testcase_05 AC 111 ms
93,280 KB
testcase_06 AC 80 ms
83,856 KB
testcase_07 AC 119 ms
95,988 KB
testcase_08 AC 96 ms
90,252 KB
testcase_09 AC 63 ms
72,744 KB
testcase_10 AC 114 ms
94,640 KB
testcase_11 AC 122 ms
95,828 KB
testcase_12 AC 201 ms
108,712 KB
testcase_13 AC 208 ms
118,660 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 AC 210 ms
118,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [[-1]*10 for _ in range(N+1)]
dp[0][0] = 0
for i in range(N):
    m = A[i] % 10       
    for j in range(10):
        if dp[i][j] == -1:
            continue
        dp[i+1][j] = max(dp[i+1][j], dp[i][j])
        x = (m+j)%10
        dp[i+1][x] = max(dp[i+1][x], dp[i][j] + 1)
print(dp[N][0])
0