結果
問題 | No.2249 GCDistance |
ユーザー | convexineq |
提出日時 | 2023-06-29 16:00:27 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 756 ms / 5,000 ms |
コード長 | 772 bytes |
コンパイル時間 | 345 ms |
コンパイル使用メモリ | 82,068 KB |
実行使用メモリ | 262,928 KB |
最終ジャッジ日時 | 2024-07-06 06:44:26 |
合計ジャッジ時間 | 10,924 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 637 ms
262,912 KB |
testcase_01 | AC | 751 ms
262,696 KB |
testcase_02 | AC | 742 ms
262,472 KB |
testcase_03 | AC | 743 ms
262,716 KB |
testcase_04 | AC | 680 ms
262,856 KB |
testcase_05 | AC | 744 ms
262,852 KB |
testcase_06 | AC | 742 ms
262,700 KB |
testcase_07 | AC | 749 ms
262,928 KB |
testcase_08 | AC | 651 ms
262,644 KB |
testcase_09 | AC | 756 ms
262,568 KB |
testcase_10 | AC | 729 ms
262,516 KB |
ソースコード
import sys readline = sys.stdin.readline #n = int(readline()) #*a, = map(int,readline().split()) # b = [list(map(int,readline().split())) for _ in range()] def enumerate_tortient(N): primes = [] lpf = [0]*(N+1) # least prime factor tor = [1]*(N+1); tor[0] = 0 for x in range(2,N+1): if lpf[x] == 0: lpf[x] = x primes.append(x) tor[x] = x-1 for p in primes: if p > lpf[x] or x*p > N: break lpf[x*p] = p tor[x*p] = tor[x]*(p if lpf[x] == p else p-1) return tor T = int(readline()) N = 10**7 tor = enumerate_tortient(N) #print(tor) tor[1] -= 1 for i in range(1,N+1): tor[i] += tor[i-1] for _ in range(T): n = int(readline()) print(n*(n-1) - tor[n])