結果

問題 No.937 Ultra Sword
ユーザー otamay6otamay6
提出日時 2019-11-24 08:51:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 706 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 37,968 KB
最終ジャッジ日時 2024-11-21 02:09:39
合計ジャッジ時間 100,283 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
31,060 KB
testcase_01 AC 228 ms
16,768 KB
testcase_02 AC 31 ms
15,872 KB
testcase_03 AC 32 ms
17,700 KB
testcase_04 AC 31 ms
16,000 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 2,317 ms
35,752 KB
testcase_09 AC 1,739 ms
19,408 KB
testcase_10 TLE -
testcase_11 AC 386 ms
17,536 KB
testcase_12 AC 1,751 ms
24,600 KB
testcase_13 AC 1,683 ms
25,888 KB
testcase_14 AC 1,970 ms
37,968 KB
testcase_15 AC 1,477 ms
23,624 KB
testcase_16 AC 71 ms
16,384 KB
testcase_17 AC 183 ms
18,468 KB
testcase_18 AC 1,604 ms
23,516 KB
testcase_19 AC 947 ms
22,284 KB
testcase_20 AC 820 ms
19,840 KB
testcase_21 TLE -
testcase_22 AC 31 ms
16,000 KB
testcase_23 AC 31 ms
17,700 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 294 ms
11,648 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 945 ms
12,800 KB
testcase_35 AC 529 ms
12,288 KB
testcase_36 TLE -
testcase_37 AC 571 ms
12,160 KB
testcase_38 TLE -
testcase_39 AC 367 ms
11,648 KB
testcase_40 TLE -
testcase_41 AC 1,616 ms
13,948 KB
testcase_42 TLE -
testcase_43 TLE -
testcase_44 AC 1,156 ms
12,800 KB
testcase_45 AC 2,055 ms
14,372 KB
testcase_46 AC 2,096 ms
14,632 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
	while x!=0:
		Lx=len(bin(x))
		Ly=len(bin(y))
		y^=x<<(Ly-Lx)
		if x>y:
			x,y=y,x
	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