結果

問題 No.1231 Make a Multiple of Ten
ユーザー googol_S0googol_S0
提出日時 2020-09-18 21:26:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 139,844 KB
最終ジャッジ日時 2024-06-23 13:37:27
合計ジャッジ時間 2,806 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 126 ms
103,168 KB
testcase_05 AC 116 ms
100,224 KB
testcase_06 AC 92 ms
84,352 KB
testcase_07 AC 124 ms
104,320 KB
testcase_08 AC 93 ms
90,396 KB
testcase_09 AC 60 ms
72,704 KB
testcase_10 AC 118 ms
102,388 KB
testcase_11 AC 129 ms
104,704 KB
testcase_12 AC 201 ms
137,984 KB
testcase_13 AC 208 ms
139,520 KB
testcase_14 AC 36 ms
51,968 KB
testcase_15 AC 204 ms
139,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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