結果
問題 | No.1231 Make a Multiple of Ten |
ユーザー | 👑 rin204 |
提出日時 | 2020-09-23 17:33:15 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 659 bytes |
コンパイル時間 | 208 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 32,988 KB |
最終ジャッジ日時 | 2024-06-27 22:50:04 |
合計ジャッジ時間 | 3,215 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 31 ms
10,624 KB |
testcase_03 | AC | 30 ms
10,624 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 32 ms
10,624 KB |
testcase_15 | WA | - |
ソースコード
n = int(input()) alst = list(map(int, input().split())) ans = 0 cnt = [0 for _ in range(10)] for a in alst: cnt[a % 10] += 1 for i in range(10): if i == 0: ans += cnt[i] cnt[i] = 0 elif i % 2 == 0: ans += cnt[i] // 5 cnt[i] %= 5 elif i == 5: ans += cnt[i] // 2 cnt[i] %= 2 else: ans += cnt[i] // 10 cnt[i] %= 10 sub = 0 def solve(num = 1, n = 0, total = 0): global sub if num == 10: if total % 10 == 0: sub = max(n, sub) return for i in range(cnt[num] + 1): solve(num + 1, n + i, total + i * num) solve() print(ans + sub)