結果
問題 | No.2249 GCDistance |
ユーザー | sotanishy |
提出日時 | 2023-03-17 22:04:46 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,737 ms / 5,000 ms |
コード長 | 388 bytes |
コンパイル時間 | 221 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 339,984 KB |
最終ジャッジ日時 | 2024-09-18 11:06:26 |
合計ジャッジ時間 | 21,535 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,556 ms
339,516 KB |
testcase_01 | AC | 1,737 ms
339,520 KB |
testcase_02 | AC | 1,686 ms
339,396 KB |
testcase_03 | AC | 1,655 ms
339,812 KB |
testcase_04 | AC | 1,619 ms
339,616 KB |
testcase_05 | AC | 1,678 ms
339,456 KB |
testcase_06 | AC | 1,641 ms
339,984 KB |
testcase_07 | AC | 1,666 ms
339,636 KB |
testcase_08 | AC | 1,572 ms
339,572 KB |
testcase_09 | AC | 1,665 ms
339,396 KB |
testcase_10 | AC | 1,666 ms
339,640 KB |
ソースコード
from itertools import accumulate import sys input = sys.stdin.readline M = 10**7 totient = list(range(M+1)) for i in range(2, M+1): if totient[i] == i: for j in range(i, M+1, i): totient[j] = totient[j] // i * (i-1) totient = list(accumulate(totient)) T = int(input()) for _ in range(T): N = int(input()) ans = N * (N - 1) - totient[N] + 1 print(ans)