結果

問題 No.2249 GCDistance
ユーザー hir355hir355
提出日時 2023-03-17 22:20:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,848 ms / 5,000 ms
コード長 293 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 155,500 KB
最終ジャッジ日時 2024-09-18 11:27:43
合計ジャッジ時間 21,048 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,288 ms
153,716 KB
testcase_01 AC 1,761 ms
155,036 KB
testcase_02 AC 1,727 ms
155,340 KB
testcase_03 AC 1,738 ms
154,968 KB
testcase_04 AC 1,476 ms
155,172 KB
testcase_05 AC 1,848 ms
154,884 KB
testcase_06 AC 1,731 ms
155,224 KB
testcase_07 AC 1,689 ms
155,264 KB
testcase_08 AC 1,284 ms
154,720 KB
testcase_09 AC 1,742 ms
155,392 KB
testcase_10 AC 1,600 ms
155,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 10000000
t = int(input())
e = [i for i in range(M + 1)]
for i in range(2, M + 1):
    if e[i] == i:
        for j in range(i, M + 1, i):
            e[j] = e[j] // i * (i - 1)
for i in range(M):
    e[i + 1] += e[i]
for _ in range(t):
    n = int(input())
    print(n * (n - 1) - e[n] + 1)
0