結果

問題 No.1231 Make a Multiple of Ten
ユーザー WSKRWSKR
提出日時 2020-09-21 22:54:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 581 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 118,048 KB
最終ジャッジ日時 2024-06-24 21:45:11
合計ジャッジ時間 2,474 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,940 KB
testcase_01 AC 34 ms
52,964 KB
testcase_02 AC 34 ms
52,216 KB
testcase_03 AC 35 ms
53,144 KB
testcase_04 AC 113 ms
91,120 KB
testcase_05 AC 106 ms
89,044 KB
testcase_06 AC 68 ms
80,768 KB
testcase_07 AC 118 ms
92,352 KB
testcase_08 AC 85 ms
84,364 KB
testcase_09 AC 62 ms
79,024 KB
testcase_10 AC 107 ms
90,420 KB
testcase_11 AC 119 ms
92,528 KB
testcase_12 AC 181 ms
108,864 KB
testcase_13 AC 190 ms
118,048 KB
testcase_14 AC 35 ms
52,888 KB
testcase_15 AC 190 ms
118,024 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