結果

問題 No.2552 Not Coprime, Not Divisor
ユーザー titiatitia
提出日時 2024-11-11 06:45:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,093 ms / 2,000 ms
コード長 1,113 bytes
コンパイル時間 580 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 99,072 KB
最終ジャッジ日時 2024-11-11 06:45:43
合計ジャッジ時間 14,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 514 ms
98,688 KB
testcase_01 AC 869 ms
98,432 KB
testcase_02 AC 454 ms
98,560 KB
testcase_03 AC 882 ms
98,432 KB
testcase_04 AC 845 ms
98,432 KB
testcase_05 AC 256 ms
98,432 KB
testcase_06 AC 909 ms
99,072 KB
testcase_07 AC 1,030 ms
98,432 KB
testcase_08 AC 752 ms
98,688 KB
testcase_09 AC 1,093 ms
98,304 KB
testcase_10 AC 412 ms
98,304 KB
testcase_11 AC 669 ms
98,432 KB
testcase_12 AC 1,047 ms
98,560 KB
testcase_13 AC 474 ms
98,432 KB
testcase_14 AC 352 ms
98,816 KB
testcase_15 AC 97 ms
97,664 KB
testcase_16 AC 97 ms
97,664 KB
testcase_17 AC 324 ms
98,560 KB
testcase_18 AC 100 ms
97,664 KB
testcase_19 AC 100 ms
97,664 KB
testcase_20 AC 99 ms
97,792 KB
testcase_21 AC 98 ms
97,664 KB
testcase_22 AC 99 ms
97,408 KB
testcase_23 AC 100 ms
97,664 KB
testcase_24 AC 98 ms
97,664 KB
testcase_25 AC 99 ms
97,152 KB
testcase_26 AC 103 ms
97,664 KB
testcase_27 AC 99 ms
97,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MAX=1000010

# 線形篩。エラトステネスの篩を線形にできる。
Sieve=[-1]*MAX
Primes=[]

for i in range(2,MAX):
    if Sieve[i]==-1:
        Primes.append(i)
        Sieve[i]=i

    for p in Primes:
        if p*i>=MAX or p>Sieve[i]:
            break
        else:
            Sieve[p*i]=p


# 素因数分解
def fact(x):
    D=dict()
    while x!=1:
        k=Sieve[x]
        if k in D:
            D[k]+=1
        else:
            D[k]=1
        x//=k
    return D


from math import gcd

N=int(input())
SP=set(Primes)

ANS=0
for x in range(4,N+1):
    LIST=list(fact(x))
    score=0

    for i in range(1<<len(LIST)):
        now=1
        count=0
        for j in range(len(LIST)):
            if i & (1<<j) != 0:
                now=now*LIST[j]
                count+=1

        if count%2==0:
            score+=N//now-x//now
        else:
            score-=N//now-x//now

    #print(x,score)

    ANS+=(N-x+1)-score-N//x

    score2=0

    #for y in range(x+1,N+1):
    #    if 1<gcd(x,y)<x:
    #        score2+=1
    #print(score2)
    #assert score2==(N-x+1)-score-N//x

print(ANS)
0