結果

問題 No.2249 GCDistance
ユーザー lloyzlloyz
提出日時 2023-07-28 21:09:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,406 ms / 5,000 ms
コード長 363 bytes
コンパイル時間 746 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 155,076 KB
最終ジャッジ日時 2024-10-06 16:58:01
合計ジャッジ時間 18,975 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,281 ms
153,984 KB
testcase_01 AC 1,384 ms
154,500 KB
testcase_02 AC 1,382 ms
154,480 KB
testcase_03 AC 1,406 ms
154,496 KB
testcase_04 AC 1,340 ms
154,368 KB
testcase_05 AC 1,390 ms
155,076 KB
testcase_06 AC 1,402 ms
155,008 KB
testcase_07 AC 1,401 ms
154,880 KB
testcase_08 AC 1,314 ms
154,496 KB
testcase_09 AC 1,388 ms
154,496 KB
testcase_10 AC 1,405 ms
154,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

m = 10**7
P = list(range(m + 1))
for i in range(2, m + 1):
    if P[i] == i:
        for j in range(i, m + 1, i):
            P[j] = P[j] // i * (i - 1)
for i in range(2, m + 1):
    P[i] += P[i - 1]
for _ in range(int(input())):
    n = int(input())
    a, b = n * (n - 1) // 2, P[n] - 1
    c = a - b
    print(b + 2 * c)
0