結果

問題 No.2552 Not Coprime, Not Divisor
ユーザー rlangevinrlangevin
提出日時 2023-12-26 08:57:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 277 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 602 ms
コンパイル使用メモリ 82,984 KB
実行使用メモリ 91,116 KB
最終ジャッジ日時 2024-09-27 15:04:46
合計ジャッジ時間 4,985 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
83,120 KB
testcase_01 AC 193 ms
88,032 KB
testcase_02 AC 112 ms
81,444 KB
testcase_03 AC 204 ms
87,908 KB
testcase_04 AC 203 ms
87,728 KB
testcase_05 AC 75 ms
71,020 KB
testcase_06 AC 234 ms
88,816 KB
testcase_07 AC 256 ms
90,292 KB
testcase_08 AC 173 ms
86,124 KB
testcase_09 AC 266 ms
91,116 KB
testcase_10 AC 111 ms
80,996 KB
testcase_11 AC 153 ms
84,512 KB
testcase_12 AC 277 ms
90,652 KB
testcase_13 AC 122 ms
82,136 KB
testcase_14 AC 96 ms
77,860 KB
testcase_15 AC 39 ms
53,300 KB
testcase_16 AC 39 ms
52,944 KB
testcase_17 AC 88 ms
77,172 KB
testcase_18 AC 40 ms
52,828 KB
testcase_19 AC 40 ms
53,420 KB
testcase_20 AC 39 ms
52,692 KB
testcase_21 AC 40 ms
52,308 KB
testcase_22 AC 38 ms
53,044 KB
testcase_23 AC 41 ms
52,864 KB
testcase_24 AC 41 ms
52,572 KB
testcase_25 AC 41 ms
52,696 KB
testcase_26 AC 42 ms
52,188 KB
testcase_27 AC 40 ms
52,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def euler_phi2(N):
    phi = list(range(N + 1))
    for x in range(2, N + 1):
        if phi[x] == x:
            for y in range(x, N + 1, x):
                phi[y] = phi[y] // x * (x - 1)
    return phi


N = int(input())
div = [0] * (N + 1)
ans = N * (N + 1) //2
for i in range(2, N + 1):
    for j in range(i, N + 1, i):
        div[j] += 1

print(ans - sum(div) - sum(euler_phi2(N)))
0