結果

問題 No.1006 Share an Integer
ユーザー vwxyzvwxyz
提出日時 2024-06-22 02:35:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 646 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 106,112 KB
最終ジャッジ日時 2024-06-22 02:36:19
合計ジャッジ時間 22,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 1,293 ms
71,524 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,921 ms
95,540 KB
testcase_16 AC 972 ms
51,548 KB
testcase_17 AC 1,387 ms
73,024 KB
testcase_18 AC 1,964 ms
94,280 KB
testcase_19 AC 1,904 ms
90,152 KB
testcase_20 TLE -
testcase_21 TLE -
権限があれば一括ダウンロードができます

ソースコード

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