結果

問題 No.1231 Make a Multiple of Ten
ユーザー Akijin_007Akijin_007
提出日時 2023-02-04 19:15:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 107,428 KB
最終ジャッジ日時 2024-07-03 15:52:55
合計ジャッジ時間 2,790 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,152 KB
testcase_01 AC 37 ms
53,360 KB
testcase_02 AC 38 ms
53,356 KB
testcase_03 AC 35 ms
52,996 KB
testcase_04 AC 60 ms
82,608 KB
testcase_05 AC 58 ms
80,812 KB
testcase_06 AC 46 ms
67,156 KB
testcase_07 AC 64 ms
84,420 KB
testcase_08 AC 51 ms
71,048 KB
testcase_09 AC 42 ms
64,124 KB
testcase_10 AC 60 ms
81,044 KB
testcase_11 AC 61 ms
85,508 KB
testcase_12 AC 86 ms
107,428 KB
testcase_13 AC 92 ms
102,096 KB
testcase_14 AC 34 ms
53,432 KB
testcase_15 AC 93 ms
102,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

m = [0] * 10
s = sum(A) % 10
for i in range(N):
    m[A[i]%10] += 1

dp = [N] * 10

dp[0] = 0
ndp = list(dp)
for i in range(1, 10):
    for j in range(min(m[i]+1, 10)):
        for k in range(10):
            t = (k + i*j)%10
            ndp[t] = min(ndp[t], dp[k]+j)
    dp = list(ndp)
    # print(dp)

print(N - dp[s])
0