結果

問題 No.1231 Make a Multiple of Ten
ユーザー けむけむけむけむ
提出日時 2021-08-29 21:40:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 634 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,872 KB
最終ジャッジ日時 2024-11-22 08:56:05
合計ジャッジ時間 2,733 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 80 ms
20,676 KB
testcase_05 AC 72 ms
19,228 KB
testcase_06 AC 46 ms
14,532 KB
testcase_07 AC 85 ms
20,956 KB
testcase_08 AC 59 ms
15,712 KB
testcase_09 AC 40 ms
13,240 KB
testcase_10 AC 76 ms
19,688 KB
testcase_11 AC 86 ms
21,936 KB
testcase_12 AC 98 ms
31,632 KB
testcase_13 AC 139 ms
32,872 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 140 ms
32,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations
def Ten(N, A):
    sumA = sum(A)
    if sumA % 10 == 0:
        return N
    tens = []
    for i in range(1, N // 2 + 1):
        combs = list(combinations(A, i))
        for j in range(len(combs)):
            sumj1 = sum(combs[j])
            sumj2 = sumA - sumj1
            if sumj1 % 10 == 0:
                tens.append(i)
            if sumj2 % 10 == 0:
                return N - i
    if len(tens) > 0:
        return max(tens)
    else:
        return 0

def main():
    N = int(input())
    A = list(map(int, input().split()))
    print(Ten(N, A))

if __name__ == '__main__':
    main()

0