結果

問題 No.937 Ultra Sword
ユーザー otamay6otamay6
提出日時 2019-11-21 19:59:17
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 668 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 190,168 KB
最終ジャッジ日時 2024-11-21 01:55:58
合計ジャッジ時間 87,300 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
58,916 KB
testcase_01 TLE -
testcase_02 AC 34 ms
57,856 KB
testcase_03 AC 34 ms
144,768 KB
testcase_04 AC 34 ms
57,856 KB
testcase_05 AC 841 ms
190,168 KB
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 35 ms
52,480 KB
testcase_23 AC 33 ms
52,608 KB
testcase_24 AC 1,320 ms
95,152 KB
testcase_25 AC 826 ms
94,080 KB
testcase_26 AC 814 ms
91,264 KB
testcase_27 AC 754 ms
91,092 KB
testcase_28 AC 882 ms
92,608 KB
testcase_29 AC 284 ms
82,176 KB
testcase_30 AC 820 ms
88,744 KB
testcase_31 AC 976 ms
95,724 KB
testcase_32 AC 638 ms
88,576 KB
testcase_33 AC 941 ms
96,080 KB
testcase_34 AC 412 ms
82,176 KB
testcase_35 AC 303 ms
82,048 KB
testcase_36 AC 812 ms
94,208 KB
testcase_37 AC 325 ms
82,176 KB
testcase_38 AC 707 ms
91,240 KB
testcase_39 AC 291 ms
81,920 KB
testcase_40 AC 796 ms
92,288 KB
testcase_41 AC 438 ms
84,352 KB
testcase_42 AC 673 ms
89,728 KB
testcase_43 AC 655 ms
88,448 KB
testcase_44 AC 426 ms
82,500 KB
testcase_45 AC 521 ms
85,376 KB
testcase_46 AC 568 ms
186,880 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