結果

問題 No.937 Ultra Sword
ユーザー otamay6otamay6
提出日時 2019-11-21 23:04:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,272 ms / 3,000 ms
コード長 729 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 96,512 KB
最終ジャッジ日時 2024-11-21 02:05:45
合計ジャッジ時間 28,898 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 244 ms
79,232 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 48 ms
52,352 KB
testcase_04 AC 44 ms
53,376 KB
testcase_05 AC 803 ms
96,512 KB
testcase_06 AC 953 ms
92,604 KB
testcase_07 AC 1,026 ms
93,952 KB
testcase_08 AC 643 ms
86,144 KB
testcase_09 AC 570 ms
84,096 KB
testcase_10 AC 1,094 ms
95,964 KB
testcase_11 AC 187 ms
76,884 KB
testcase_12 AC 510 ms
88,448 KB
testcase_13 AC 481 ms
87,552 KB
testcase_14 AC 536 ms
89,856 KB
testcase_15 AC 427 ms
85,120 KB
testcase_16 AC 119 ms
76,540 KB
testcase_17 AC 145 ms
76,544 KB
testcase_18 AC 460 ms
86,412 KB
testcase_19 AC 324 ms
81,920 KB
testcase_20 AC 291 ms
80,512 KB
testcase_21 AC 1,194 ms
96,512 KB
testcase_22 AC 42 ms
52,864 KB
testcase_23 AC 42 ms
52,224 KB
testcase_24 AC 1,272 ms
95,872 KB
testcase_25 AC 868 ms
94,424 KB
testcase_26 AC 862 ms
91,264 KB
testcase_27 AC 803 ms
91,392 KB
testcase_28 AC 946 ms
92,800 KB
testcase_29 AC 320 ms
82,432 KB
testcase_30 AC 831 ms
88,704 KB
testcase_31 AC 1,039 ms
95,872 KB
testcase_32 AC 695 ms
88,840 KB
testcase_33 AC 981 ms
95,872 KB
testcase_34 AC 445 ms
82,304 KB
testcase_35 AC 340 ms
82,560 KB
testcase_36 AC 872 ms
94,424 KB
testcase_37 AC 364 ms
82,304 KB
testcase_38 AC 758 ms
91,008 KB
testcase_39 AC 332 ms
82,176 KB
testcase_40 AC 856 ms
92,960 KB
testcase_41 AC 478 ms
84,608 KB
testcase_42 AC 717 ms
89,984 KB
testcase_43 AC 700 ms
89,280 KB
testcase_44 AC 469 ms
82,432 KB
testcase_45 AC 565 ms
85,504 KB
testcase_46 AC 624 ms
85,248 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(str(bin(x)))
		Ly=len(str(bin(y)))
		y^=x<<(Ly-Lx)
		if x>y:
			x,y=y,x
	return y
def usable(x,g):
    Lx=len(str(bin(x)))
    Lg=len(str(bin(g)))
    while Lx>=Lg and x!=0:
        x^=g<<(Lx-Lg)
        Lx=len(str(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