結果

問題 No.937 Ultra Sword
ユーザー otamay6otamay6
提出日時 2019-11-24 09:08:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,340 ms / 3,000 ms
コード長 736 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 96,256 KB
最終ジャッジ日時 2024-11-21 02:15:43
合計ジャッジ時間 31,029 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 234 ms
79,388 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 825 ms
96,256 KB
testcase_06 AC 998 ms
92,672 KB
testcase_07 AC 1,057 ms
94,428 KB
testcase_08 AC 660 ms
86,272 KB
testcase_09 AC 582 ms
84,864 KB
testcase_10 AC 1,135 ms
96,236 KB
testcase_11 AC 202 ms
77,868 KB
testcase_12 AC 577 ms
87,808 KB
testcase_13 AC 534 ms
87,992 KB
testcase_14 AC 599 ms
89,344 KB
testcase_15 AC 551 ms
84,736 KB
testcase_16 AC 152 ms
77,056 KB
testcase_17 AC 141 ms
76,672 KB
testcase_18 AC 487 ms
86,440 KB
testcase_19 AC 355 ms
82,432 KB
testcase_20 AC 436 ms
81,152 KB
testcase_21 AC 1,340 ms
95,616 KB
testcase_22 AC 39 ms
52,224 KB
testcase_23 AC 39 ms
52,480 KB
testcase_24 AC 1,325 ms
95,156 KB
testcase_25 AC 950 ms
94,208 KB
testcase_26 AC 979 ms
91,220 KB
testcase_27 AC 834 ms
91,476 KB
testcase_28 AC 984 ms
92,668 KB
testcase_29 AC 340 ms
82,536 KB
testcase_30 AC 930 ms
89,176 KB
testcase_31 AC 1,179 ms
96,128 KB
testcase_32 AC 746 ms
89,344 KB
testcase_33 AC 1,034 ms
96,128 KB
testcase_34 AC 504 ms
83,328 KB
testcase_35 AC 368 ms
82,304 KB
testcase_36 AC 943 ms
94,336 KB
testcase_37 AC 416 ms
82,304 KB
testcase_38 AC 835 ms
91,776 KB
testcase_39 AC 354 ms
82,176 KB
testcase_40 AC 915 ms
92,800 KB
testcase_41 AC 523 ms
84,864 KB
testcase_42 AC 807 ms
89,728 KB
testcase_43 AC 772 ms
88,956 KB
testcase_44 AC 467 ms
82,304 KB
testcase_45 AC 638 ms
85,888 KB
testcase_46 AC 726 ms
85,868 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)
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