結果
問題 | No.937 Ultra Sword |
ユーザー | maspy |
提出日時 | 2020-03-28 16:56:29 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 870 bytes |
コンパイル時間 | 87 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 22,668 KB |
最終ジャッジ日時 | 2024-06-10 17:35:48 |
合計ジャッジ時間 | 18,579 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 287 ms
14,976 KB |
testcase_01 | AC | 297 ms
15,104 KB |
testcase_02 | AC | 286 ms
14,972 KB |
testcase_03 | AC | 281 ms
14,972 KB |
testcase_04 | AC | 286 ms
14,976 KB |
testcase_05 | AC | 363 ms
20,156 KB |
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 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 290 ms
15,100 KB |
testcase_24 | AC | 421 ms
20,032 KB |
testcase_25 | AC | 385 ms
19,372 KB |
testcase_26 | AC | 373 ms
18,492 KB |
testcase_27 | AC | 368 ms
18,448 KB |
testcase_28 | AC | 393 ms
18,760 KB |
testcase_29 | AC | 281 ms
15,104 KB |
testcase_30 | AC | 368 ms
18,104 KB |
testcase_31 | AC | 398 ms
19,680 KB |
testcase_32 | AC | 339 ms
18,104 KB |
testcase_33 | AC | 402 ms
19,824 KB |
testcase_34 | AC | 304 ms
16,000 KB |
testcase_35 | AC | 294 ms
15,232 KB |
testcase_36 | AC | 381 ms
19,372 KB |
testcase_37 | AC | 294 ms
15,616 KB |
testcase_38 | AC | 356 ms
18,304 KB |
testcase_39 | AC | 292 ms
15,232 KB |
testcase_40 | AC | 376 ms
18,552 KB |
testcase_41 | AC | 315 ms
16,224 KB |
testcase_42 | AC | 358 ms
18,260 KB |
testcase_43 | AC | 363 ms
17,580 KB |
testcase_44 | AC | 314 ms
16,384 KB |
testcase_45 | AC | 339 ms
17,084 KB |
testcase_46 | AC | 346 ms
17,172 KB |
ソースコード
#!/usr/bin/ python3.8 import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines from functools import reduce U = 10 ** 5 N, *A = map(int, read().split()) num_count = [0] * (U + 1) for x in A: num_count[x] += 1 save_cost = [0] * (U + 1) for d in range(2, U + 1): save_cost[d] = sum((n - n // d) * num_count[n] for n in range(d, U + 1, d)) def gcd(a, b): if a < b: a, b = b, a while b: LA = a.bit_length() LB = b.bit_length() a ^= b << (LA - LB) if a < b: a, b = b, a return a g = reduce(gcd, A) cand = [g] for i in range(1, 17): cand += [x ^ (g << i) for x in cand] max_save = 0 for d in cand: if 1 <= d <= U: x = save_cost[d] if max_save < x: max_save = x answer = sum(A) - max_save print(answer)