結果

問題 No.1231 Make a Multiple of Ten
ユーザー pluto77pluto77
提出日時 2020-10-05 08:56:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,518 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 791 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 32,992 KB
最終ジャッジ日時 2024-07-19 19:18:20
合計ジャッジ時間 10,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 650 ms
20,520 KB
testcase_05 AC 577 ms
19,076 KB
testcase_06 AC 255 ms
13,740 KB
testcase_07 AC 694 ms
21,796 KB
testcase_08 AC 401 ms
15,392 KB
testcase_09 AC 155 ms
12,288 KB
testcase_10 AC 620 ms
19,532 KB
testcase_11 AC 746 ms
22,264 KB
testcase_12 AC 1,371 ms
31,260 KB
testcase_13 AC 1,406 ms
32,540 KB
testcase_14 AC 26 ms
10,624 KB
testcase_15 AC 1,518 ms
32,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki231
n=int(input())
a=list(map(int,input().split()))
l=[]
for i in a:
 l.append(i%10)
dp=[-100000]*10
dp[0]=0
for i in range(n):
 t=[-100000]*10
 for j in range(10):
  t[(j+l[i])%10]=max(dp[j]+1,dp[(j+l[i])%10])
 dp=t
print(dp[0])
0