結果

問題 No.1231 Make a Multiple of Ten
ユーザー aqua_tenhouaqua_tenhou
提出日時 2020-09-18 21:45:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 107,224 KB
最終ジャッジ日時 2024-06-23 13:42:19
合計ジャッジ時間 2,708 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 113 ms
89,088 KB
testcase_05 AC 102 ms
87,276 KB
testcase_06 AC 75 ms
79,144 KB
testcase_07 AC 115 ms
90,680 KB
testcase_08 AC 87 ms
82,244 KB
testcase_09 AC 68 ms
77,080 KB
testcase_10 AC 104 ms
88,960 KB
testcase_11 AC 113 ms
90,928 KB
testcase_12 AC 171 ms
107,224 KB
testcase_13 AC 178 ms
101,820 KB
testcase_14 AC 37 ms
52,068 KB
testcase_15 AC 173 ms
101,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

d = [-float("Inf")]*10
d[0] = 0
for x in a:
    dnext = [-float("Inf")]*10
    for j in range(10):
        dnext[j] = max(dnext[j],d[j])
        dnext[(x+j)%10] = max(dnext[(x+j)%10],d[j] + 1)
        
    d = dnext
print(d[0])
0