結果

問題 No.937 Ultra Sword
ユーザー otamay6otamay6
提出日時 2019-11-21 19:58:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 668 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,412 KB
最終ジャッジ日時 2024-11-21 01:53:53
合計ジャッジ時間 114,488 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
17,832 KB
testcase_01 TLE -
testcase_02 AC 31 ms
17,828 KB
testcase_03 AC 31 ms
31,724 KB
testcase_04 AC 31 ms
17,824 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 33 ms
17,700 KB
testcase_23 AC 34 ms
10,752 KB
testcase_24 TLE -
testcase_25 AC 2,580 ms
19,772 KB
testcase_26 AC 2,438 ms
17,704 KB
testcase_27 AC 2,244 ms
18,004 KB
testcase_28 AC 2,430 ms
18,584 KB
testcase_29 AC 225 ms
11,776 KB
testcase_30 AC 2,025 ms
16,376 KB
testcase_31 TLE -
testcase_32 AC 1,803 ms
16,368 KB
testcase_33 TLE -
testcase_34 AC 592 ms
13,056 KB
testcase_35 AC 346 ms
12,416 KB
testcase_36 AC 2,435 ms
19,060 KB
testcase_37 AC 374 ms
12,160 KB
testcase_38 AC 2,044 ms
17,072 KB
testcase_39 AC 270 ms
12,032 KB
testcase_40 AC 2,429 ms
18,572 KB
testcase_41 AC 928 ms
14,464 KB
testcase_42 AC 1,910 ms
17,224 KB
testcase_43 AC 1,741 ms
16,332 KB
testcase_44 AC 741 ms
13,056 KB
testcase_45 AC 1,195 ms
14,784 KB
testcase_46 AC 1,256 ms
21,860 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