結果

問題 No.1231 Make a Multiple of Ten
ユーザー tobusakanatobusakana
提出日時 2022-11-26 13:17:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 150 ms / 2,000 ms
コード長 277 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-10-02 16:23:12
合計ジャッジ時間 3,142 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 101 ms
88,704 KB
testcase_05 AC 91 ms
87,040 KB
testcase_06 AC 67 ms
74,624 KB
testcase_07 AC 99 ms
90,496 KB
testcase_08 AC 81 ms
81,920 KB
testcase_09 AC 59 ms
69,248 KB
testcase_10 AC 95 ms
88,576 KB
testcase_11 AC 101 ms
90,624 KB
testcase_12 AC 139 ms
107,136 KB
testcase_13 AC 150 ms
101,888 KB
testcase_14 AC 40 ms
51,712 KB
testcase_15 AC 149 ms
102,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

for a in A:
  new_dp = dp.copy()
  for i in range(10):
    if dp[i] == -1:
      continue
    new_val = (i + a) % 10
    new_dp[new_val] = max(new_dp[new_val], dp[i] + 1)
  dp = new_dp

print(dp[0])
0