結果

問題 No.1231 Make a Multiple of Ten
ユーザー WSKRWSKR
提出日時 2020-09-21 22:54:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,227 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 120,632 KB
最終ジャッジ日時 2024-06-24 21:44:50
合計ジャッジ時間 9,023 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 33 ms
10,752 KB
testcase_04 AC 557 ms
61,000 KB
testcase_05 AC 480 ms
54,540 KB
testcase_06 AC 208 ms
27,860 KB
testcase_07 AC 610 ms
63,176 KB
testcase_08 AC 343 ms
40,420 KB
testcase_09 AC 136 ms
20,928 KB
testcase_10 AC 511 ms
57,108 KB
testcase_11 AC 630 ms
66,652 KB
testcase_12 AC 1,143 ms
115,132 KB
testcase_13 AC 1,208 ms
120,632 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 1,227 ms
120,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#make a muptiple of ten

def main():
    N = int(input())
    a = list(map(int, input().split()))
    dp = [[0 for i in range(10)] for j in range(N+1)]
    #dp[X][mod] = index-Xまで見てそれまでの総和がmod である時、これまでで取れる枚数の最大値
    for i in range(10):
        dp[1][i] = -10**18
    dp[1][a[0]%10] = 1        
    for i in range(1,N):
        v = a[i] 
        for j in range(10):
            dp[i+1][j] = max(dp[i][(j-v) % 10]+1, dp[i][j])
    ans = dp[N][0]
    print(max(ans,0))
    return


if __name__ == "__main__":
    main()

0