結果

問題 No.1231 Make a Multiple of Ten
ユーザー ntudantuda
提出日時 2024-01-07 21:44:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 107,232 KB
最終ジャッジ日時 2024-09-27 19:32:41
合計ジャッジ時間 3,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,700 KB
testcase_01 AC 35 ms
51,624 KB
testcase_02 AC 35 ms
52,200 KB
testcase_03 AC 33 ms
52,572 KB
testcase_04 AC 78 ms
89,072 KB
testcase_05 AC 82 ms
87,176 KB
testcase_06 AC 57 ms
79,096 KB
testcase_07 AC 83 ms
90,808 KB
testcase_08 AC 64 ms
82,464 KB
testcase_09 AC 50 ms
73,900 KB
testcase_10 AC 77 ms
88,724 KB
testcase_11 AC 84 ms
90,864 KB
testcase_12 AC 112 ms
107,232 KB
testcase_13 AC 116 ms
102,112 KB
testcase_14 AC 33 ms
52,568 KB
testcase_15 AC 117 ms
101,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
dp = [-1] * 10
dp[0] = 0
for a in A:
    dp2 = [-1] * 10
    for i in range(10):
        if dp[i] > -1:
            dp2[(i + a) % 10] = dp[i] + 1
    for i in range(10):
        dp[i] = max(dp[i], dp2[i])
print(dp[0])
0