結果

問題 No.1231 Make a Multiple of Ten
ユーザー yakeshibayakeshiba
提出日時 2021-03-08 21:57:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 101,328 KB
最終ジャッジ日時 2024-10-10 11:36:34
合計ジャッジ時間 5,014 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,316 KB
testcase_01 AC 40 ms
55,244 KB
testcase_02 AC 41 ms
54,112 KB
testcase_03 AC 41 ms
55,268 KB
testcase_04 AC 237 ms
89,676 KB
testcase_05 AC 214 ms
87,856 KB
testcase_06 AC 126 ms
79,968 KB
testcase_07 AC 233 ms
90,740 KB
testcase_08 AC 167 ms
83,248 KB
testcase_09 AC 108 ms
78,884 KB
testcase_10 AC 215 ms
89,268 KB
testcase_11 AC 243 ms
90,964 KB
testcase_12 AC 399 ms
101,328 KB
testcase_13 AC 412 ms
100,668 KB
testcase_14 AC 42 ms
54,404 KB
testcase_15 AC 418 ms
101,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy

n = int(input())
A = list(map(lambda x:int(x)%10,input().split()))

dp = [0]*10

#print("A =",A)

for j,a in enumerate(A):
    if j == 0:
        dp[a] = 1
        continue
    cp = copy.deepcopy(dp)
    for i in range(10):
        if cp[i] != 0:
            dp[(i+a)%10] = max(cp[(i+a)%10],cp[i]+1)
    #print(dp)
    
print(dp[0])
0