結果

問題 No.1231 Make a Multiple of Ten
ユーザー marroncastlemarroncastle
提出日時 2020-09-18 21:53:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 208 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 107,136 KB
最終ジャッジ日時 2024-06-23 13:47:08
合計ジャッジ時間 2,284 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,052 KB
testcase_01 AC 37 ms
53,012 KB
testcase_02 AC 38 ms
51,760 KB
testcase_03 AC 37 ms
52,128 KB
testcase_04 AC 91 ms
89,068 KB
testcase_05 AC 89 ms
87,264 KB
testcase_06 AC 60 ms
76,088 KB
testcase_07 AC 91 ms
90,980 KB
testcase_08 AC 72 ms
82,088 KB
testcase_09 AC 54 ms
72,204 KB
testcase_10 AC 88 ms
88,748 KB
testcase_11 AC 96 ms
90,740 KB
testcase_12 AC 137 ms
107,136 KB
testcase_13 AC 143 ms
102,060 KB
testcase_14 AC 37 ms
52,964 KB
testcase_15 AC 143 ms
102,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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