結果

問題 No.2552 Not Coprime, Not Divisor
ユーザー sepa38sepa38
提出日時 2023-11-17 23:13:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 168 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 72,576 KB
最終ジャッジ日時 2024-09-26 05:34:08
合計ジャッジ時間 4,057 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
66,432 KB
testcase_01 AC 139 ms
69,504 KB
testcase_02 AC 89 ms
65,152 KB
testcase_03 AC 132 ms
69,504 KB
testcase_04 AC 136 ms
69,760 KB
testcase_05 AC 67 ms
62,780 KB
testcase_06 AC 152 ms
70,272 KB
testcase_07 AC 168 ms
71,168 KB
testcase_08 AC 126 ms
68,480 KB
testcase_09 AC 165 ms
72,576 KB
testcase_10 AC 85 ms
65,024 KB
testcase_11 AC 112 ms
67,200 KB
testcase_12 AC 163 ms
71,680 KB
testcase_13 AC 94 ms
65,664 KB
testcase_14 AC 79 ms
64,768 KB
testcase_15 AC 42 ms
51,712 KB
testcase_16 AC 42 ms
52,224 KB
testcase_17 AC 76 ms
63,872 KB
testcase_18 AC 41 ms
51,840 KB
testcase_19 AC 43 ms
52,480 KB
testcase_20 AC 42 ms
52,224 KB
testcase_21 AC 42 ms
52,224 KB
testcase_22 AC 45 ms
52,352 KB
testcase_23 AC 42 ms
51,968 KB
testcase_24 AC 43 ms
52,096 KB
testcase_25 AC 42 ms
51,840 KB
testcase_26 AC 42 ms
52,096 KB
testcase_27 AC 43 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ls = [i for i in range(n+1)]
for i in range(2, n+1):
  if ls[i] != i:
    continue
  for j in range(i, n+1, i):
    ls[j] -= ls[j] // i
ans = 0
for i in range(1, n+1):
  ans += ((n // i) - 1) * (ls[i] - 1)
print(ans)
0