結果

問題 No.1498 Factorization from -1 to 1
ユーザー sgswsgsw
提出日時 2021-05-03 23:39:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 559 ms / 3,000 ms
コード長 1,018 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 118,428 KB
最終ジャッジ日時 2024-07-23 08:56:20
合計ジャッジ時間 10,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 328 ms
114,440 KB
testcase_01 AC 326 ms
114,376 KB
testcase_02 AC 329 ms
114,384 KB
testcase_03 AC 374 ms
117,116 KB
testcase_04 AC 485 ms
118,040 KB
testcase_05 AC 546 ms
117,916 KB
testcase_06 AC 554 ms
118,168 KB
testcase_07 AC 558 ms
118,428 KB
testcase_08 AC 551 ms
118,244 KB
testcase_09 AC 559 ms
118,420 KB
testcase_10 AC 366 ms
116,620 KB
testcase_11 AC 365 ms
116,748 KB
testcase_12 AC 378 ms
116,348 KB
testcase_13 AC 372 ms
116,476 KB
testcase_14 AC 372 ms
116,484 KB
testcase_15 AC 325 ms
114,376 KB
testcase_16 AC 329 ms
114,644 KB
testcase_17 AC 334 ms
114,616 KB
testcase_18 AC 328 ms
114,588 KB
testcase_19 AC 333 ms
114,472 KB
testcase_20 AC 334 ms
114,356 KB
testcase_21 AC 330 ms
114,488 KB
testcase_22 AC 336 ms
114,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys


def input():
    return sys.stdin.readline().rstrip()


MAXN = 100010
C = [i ** 2 + 1 for i in range(MAXN + 1)]


def main():
    """
    verify Code
    """
    Q = int(input())

    Query = [int(input()) for i in range(Q)]

    d = {i: defaultdict(int) for i in range(MAXN + 1)}

    for i in range(1, MAXN + 1):
        if C[i] == 1:
            continue
        p = C[i]
        for j in range(i, MAXN + 1, p):
            exp = 0
            while C[j] % p == 0:
                C[j] //= p
                exp += 1
            d[j][p] += exp
        for j in range(p - i, MAXN + 1, p):
            exp = 0
            while C[j] % p == 0:
                C[j] //= p
                exp += 1
            d[j][p] += exp

    for idx in Query:
        fact = []
        for key, value in d[idx].items():
            for _ in range(value):
                fact.append(key)
        fact.sort()
        print(*fact)

    return 0


if __name__ == "__main__":

    main()
0