結果

問題 No.937 Ultra Sword
ユーザー otamay6otamay6
提出日時 2019-11-25 21:33:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,341 ms / 3,000 ms
コード長 838 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 181,596 KB
最終ジャッジ日時 2024-11-21 02:18:19
合計ジャッジ時間 30,367 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,620 KB
testcase_01 AC 259 ms
132,184 KB
testcase_02 AC 35 ms
53,228 KB
testcase_03 AC 35 ms
52,264 KB
testcase_04 AC 39 ms
59,500 KB
testcase_05 AC 862 ms
181,596 KB
testcase_06 AC 970 ms
177,624 KB
testcase_07 AC 1,044 ms
179,740 KB
testcase_08 AC 666 ms
171,352 KB
testcase_09 AC 608 ms
169,476 KB
testcase_10 AC 1,122 ms
181,012 KB
testcase_11 AC 194 ms
82,952 KB
testcase_12 AC 522 ms
93,984 KB
testcase_13 AC 485 ms
93,676 KB
testcase_14 AC 544 ms
95,568 KB
testcase_15 AC 519 ms
91,256 KB
testcase_16 AC 148 ms
82,140 KB
testcase_17 AC 132 ms
82,668 KB
testcase_18 AC 466 ms
92,232 KB
testcase_19 AC 339 ms
87,608 KB
testcase_20 AC 410 ms
86,132 KB
testcase_21 AC 1,341 ms
181,072 KB
testcase_22 AC 35 ms
52,464 KB
testcase_23 AC 34 ms
53,312 KB
testcase_24 AC 1,331 ms
162,632 KB
testcase_25 AC 961 ms
179,492 KB
testcase_26 AC 992 ms
176,592 KB
testcase_27 AC 853 ms
176,824 KB
testcase_28 AC 972 ms
177,700 KB
testcase_29 AC 374 ms
168,748 KB
testcase_30 AC 942 ms
174,168 KB
testcase_31 AC 1,153 ms
181,008 KB
testcase_32 AC 746 ms
174,764 KB
testcase_33 AC 1,031 ms
181,332 KB
testcase_34 AC 533 ms
167,852 KB
testcase_35 AC 398 ms
167,700 KB
testcase_36 AC 956 ms
179,508 KB
testcase_37 AC 443 ms
167,616 KB
testcase_38 AC 846 ms
176,080 KB
testcase_39 AC 388 ms
167,568 KB
testcase_40 AC 933 ms
177,824 KB
testcase_41 AC 552 ms
170,388 KB
testcase_42 AC 826 ms
175,316 KB
testcase_43 AC 792 ms
174,020 KB
testcase_44 AC 490 ms
168,252 KB
testcase_45 AC 659 ms
170,904 KB
testcase_46 AC 746 ms
170,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input().rstrip('\n'))
A = list(map(int, input().rstrip('\n').split()))
def GCD(x,y):
    if x>y:
        x,y=y,x
    Lx=len(bin(x))
    Ly=len(bin(y))
    if x!=0:
        return GCD(x,y^(x<<(Ly-Lx)))
    else:
        return y
def usable(x,g):
    Lx=len(bin(x))
    Lg=len(bin(g))
    while Lx>=Lg and x!=0:
        x^=g<<(Lx-Lg)
        Lx=len(bin(x))
    return x==0



S=sum(A)
M=max(A)
mi=[0]
for i in range(M):
  mi.append(0)
div = [[]]*(M+1)
for i in range(1,M+1):
    j=i
    while j<=M:
        div[j].append(i)
        j+=i


G=0
for x in A:
    G=GCD(G,x)
    j=1
    while j*j<=x:
        if x%j==0:
            mi[j]+=x-x//j
            if j*j!=x:
                mi[x//j]+=x-j
        j+=1
    
X=S
for i in range(2,M+1):
    if(usable(i,G)):
        X=min(X,S-mi[i])
print(X)
0