結果

問題 No.1006 Share an Integer
ユーザー vwxyzvwxyz
提出日時 2024-06-22 02:36:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 646 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 117,040 KB
最終ジャッジ日時 2024-06-22 02:36:13
合計ジャッジ時間 5,291 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,140 KB
testcase_01 AC 38 ms
53,268 KB
testcase_02 AC 41 ms
58,472 KB
testcase_03 AC 37 ms
53,416 KB
testcase_04 AC 42 ms
58,236 KB
testcase_05 AC 46 ms
61,020 KB
testcase_06 AC 45 ms
61,548 KB
testcase_07 AC 46 ms
61,912 KB
testcase_08 AC 46 ms
61,980 KB
testcase_09 AC 46 ms
60,480 KB
testcase_10 AC 46 ms
60,708 KB
testcase_11 AC 219 ms
102,020 KB
testcase_12 AC 359 ms
106,744 KB
testcase_13 AC 374 ms
108,412 KB
testcase_14 AC 394 ms
107,604 KB
testcase_15 AC 323 ms
117,040 KB
testcase_16 AC 162 ms
96,156 KB
testcase_17 AC 229 ms
103,016 KB
testcase_18 AC 328 ms
116,964 KB
testcase_19 AC 338 ms
114,376 KB
testcase_20 AC 334 ms
105,236 KB
testcase_21 AC 375 ms
108,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Divisor_Counts(N,inf=float("inf")):
    divisor_counts=[inf]+[1]*N
    for p in range(2,N+1):
        if divisor_counts[p]!=1:
            continue
        pp=p
        e=1
        while pp<=N:
            for i in range(pp,N+1,pp):
                divisor_counts[i]+=divisor_counts[i]//e
            e+=1
            pp*=p
    return divisor_counts

X=int(input())
inf=1<<60
D=Divisor_Counts(X,inf)
f=[N-D[N] for N in range(X+1)]
mi,ans_lst=inf,[]
for A in range(1,X):
    B=X-A
    if abs(f[A]-f[B])<mi:
        mi=abs(f[A]-f[B])
        ans_lst=[]
    if abs(f[A]-f[B])==mi:
        ans_lst.append((A,B))
for A,B in ans_lst:
    print(A,B)
0