結果

問題 No.1231 Make a Multiple of Ten
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2020-09-19 13:27:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,529 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 33,248 KB
最終ジャッジ日時 2024-06-23 13:56:31
合計ジャッジ時間 9,920 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 697 ms
20,772 KB
testcase_05 AC 621 ms
19,452 KB
testcase_06 AC 257 ms
14,120 KB
testcase_07 AC 740 ms
21,792 KB
testcase_08 AC 433 ms
15,772 KB
testcase_09 AC 167 ms
12,544 KB
testcase_10 AC 668 ms
19,780 KB
testcase_11 AC 766 ms
22,648 KB
testcase_12 AC 1,420 ms
31,384 KB
testcase_13 AC 1,466 ms
32,920 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 1,529 ms
33,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))

dp = [-float("INF")]*10
dp[0] = 0
for i in range(n):
    x = a[i]%10
    ndp = [-float("INF")]*10
    for j in range(10):
       ndp[(j+x)%10] = max(dp[j]+1,dp[(j+x)%10])
    dp = ndp
print(dp[0]) 
0