結果

問題 No.937 Ultra Sword
ユーザー maspymaspy
提出日時 2020-03-28 16:59:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 466 ms / 3,000 ms
コード長 867 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,768 KB
最終ジャッジ日時 2024-06-10 17:36:11
合計ジャッジ時間 18,623 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 294 ms
17,976 KB
testcase_01 AC 296 ms
17,844 KB
testcase_02 AC 278 ms
18,104 KB
testcase_03 AC 281 ms
18,104 KB
testcase_04 AC 287 ms
17,980 KB
testcase_05 AC 351 ms
22,416 KB
testcase_06 AC 466 ms
23,920 KB
testcase_07 AC 438 ms
24,340 KB
testcase_08 AC 361 ms
21,088 KB
testcase_09 AC 341 ms
20,632 KB
testcase_10 AC 456 ms
24,696 KB
testcase_11 AC 310 ms
19,160 KB
testcase_12 AC 404 ms
22,044 KB
testcase_13 AC 391 ms
22,132 KB
testcase_14 AC 407 ms
22,788 KB
testcase_15 AC 388 ms
21,708 KB
testcase_16 AC 294 ms
18,176 KB
testcase_17 AC 313 ms
18,840 KB
testcase_18 AC 396 ms
21,936 KB
testcase_19 AC 353 ms
19,992 KB
testcase_20 AC 340 ms
20,124 KB
testcase_21 AC 465 ms
25,768 KB
testcase_22 AC 305 ms
18,108 KB
testcase_23 AC 311 ms
18,100 KB
testcase_24 AC 426 ms
22,576 KB
testcase_25 AC 366 ms
22,028 KB
testcase_26 AC 353 ms
21,540 KB
testcase_27 AC 355 ms
21,392 KB
testcase_28 AC 384 ms
21,932 KB
testcase_29 AC 282 ms
18,220 KB
testcase_30 AC 353 ms
20,376 KB
testcase_31 AC 405 ms
22,472 KB
testcase_32 AC 353 ms
20,204 KB
testcase_33 AC 385 ms
22,572 KB
testcase_34 AC 305 ms
19,208 KB
testcase_35 AC 288 ms
18,472 KB
testcase_36 AC 371 ms
22,060 KB
testcase_37 AC 285 ms
18,580 KB
testcase_38 AC 345 ms
21,248 KB
testcase_39 AC 280 ms
18,304 KB
testcase_40 AC 362 ms
21,724 KB
testcase_41 AC 304 ms
19,424 KB
testcase_42 AC 342 ms
20,360 KB
testcase_43 AC 339 ms
19,952 KB
testcase_44 AC 312 ms
19,404 KB
testcase_45 AC 321 ms
19,564 KB
testcase_46 AC 335 ms
19,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/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 = [0]
for i in range(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)
0