結果

問題 No.937 Ultra Sword
ユーザー otamay6otamay6
提出日時 2019-11-24 08:49:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 668 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 34,284 KB
最終ジャッジ日時 2024-11-21 02:07:55
合計ジャッジ時間 114,691 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
17,696 KB
testcase_01 TLE -
testcase_02 AC 29 ms
15,872 KB
testcase_03 AC 28 ms
31,472 KB
testcase_04 AC 28 ms
16,128 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 29 ms
15,872 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 TLE -
testcase_25 AC 2,592 ms
19,896 KB
testcase_26 AC 2,384 ms
17,828 KB
testcase_27 AC 2,222 ms
18,004 KB
testcase_28 AC 2,432 ms
18,456 KB
testcase_29 AC 224 ms
11,776 KB
testcase_30 AC 2,035 ms
16,248 KB
testcase_31 TLE -
testcase_32 AC 1,808 ms
16,236 KB
testcase_33 TLE -
testcase_34 AC 591 ms
12,800 KB
testcase_35 AC 340 ms
12,160 KB
testcase_36 AC 2,431 ms
18,804 KB
testcase_37 AC 369 ms
12,032 KB
testcase_38 AC 2,032 ms
17,196 KB
testcase_39 AC 265 ms
11,904 KB
testcase_40 AC 2,420 ms
18,572 KB
testcase_41 AC 925 ms
14,208 KB
testcase_42 AC 1,917 ms
17,132 KB
testcase_43 AC 1,732 ms
16,076 KB
testcase_44 AC 730 ms
12,928 KB
testcase_45 AC 1,191 ms
14,528 KB
testcase_46 AC 1,234 ms
21,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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:
        x^=g<<(Lx-Lg)
        Lx=len(bin(x))
    return x==0
def main():
	N = int(input())
	A =list(map(int,input().split()))

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

if __name__=='__main__':
	main()
0