結果

問題 No.1231 Make a Multiple of Ten
ユーザー ryo_nryo_n
提出日時 2020-09-19 02:28:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 140,232 KB
最終ジャッジ日時 2024-06-23 13:54:23
合計ジャッジ時間 2,986 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,772 KB
testcase_01 AC 41 ms
55,300 KB
testcase_02 AC 41 ms
54,320 KB
testcase_03 AC 40 ms
55,532 KB
testcase_04 AC 148 ms
100,940 KB
testcase_05 AC 130 ms
91,880 KB
testcase_06 AC 90 ms
83,144 KB
testcase_07 AC 152 ms
100,920 KB
testcase_08 AC 114 ms
91,128 KB
testcase_09 AC 77 ms
80,076 KB
testcase_10 AC 143 ms
100,236 KB
testcase_11 AC 159 ms
101,200 KB
testcase_12 AC 245 ms
131,744 KB
testcase_13 AC 263 ms
140,232 KB
testcase_14 AC 41 ms
54,236 KB
testcase_15 AC 263 ms
140,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import collections

sys.setrecursionlimit(10 ** 8)

input = sys.stdin.readline


def main():
    N = int(input())
    A = [int(x) for x in input().split()]

    dp = [[-float("inf")] * 10 for j in range(N + 1)]

    dp[0][0] = 0
    for i in range(1, N + 1):
        a = A[i - 1]
        for j in range(10):
            dp[i][(j + a) % 10] = max(dp[i][(j + a) % 10], dp[i - 1][j] + 1)
            dp[i][j] = max(dp[i][j], dp[i - 1][j])

    print(dp[N][0])





    
    

if __name__ == '__main__':
    main()

0