結果

問題 No.1498 Factorization from -1 to 1
ユーザー convexineqconvexineq
提出日時 2021-05-07 19:26:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 374 ms / 3,000 ms
コード長 315 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 113,440 KB
最終ジャッジ日時 2024-09-15 07:35:37
合計ジャッジ時間 7,979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
94,960 KB
testcase_01 AC 188 ms
94,500 KB
testcase_02 AC 181 ms
94,916 KB
testcase_03 AC 241 ms
113,440 KB
testcase_04 AC 306 ms
111,560 KB
testcase_05 AC 354 ms
111,364 KB
testcase_06 AC 353 ms
111,360 KB
testcase_07 AC 348 ms
111,364 KB
testcase_08 AC 374 ms
111,936 KB
testcase_09 AC 343 ms
111,708 KB
testcase_10 AC 206 ms
94,740 KB
testcase_11 AC 210 ms
94,976 KB
testcase_12 AC 213 ms
94,700 KB
testcase_13 AC 220 ms
94,452 KB
testcase_14 AC 220 ms
94,948 KB
testcase_15 AC 193 ms
94,720 KB
testcase_16 AC 185 ms
94,592 KB
testcase_17 AC 185 ms
94,500 KB
testcase_18 AC 192 ms
94,696 KB
testcase_19 AC 188 ms
94,848 KB
testcase_20 AC 204 ms
94,848 KB
testcase_21 AC 196 ms
94,904 KB
testcase_22 AC 194 ms
94,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R = list(range(1<<17))
v = [i*i+1 for i in R]
lst = [[] for _ in R]
for i in R:
    p = v[i]
    if p == 1:
        continue
    for j in R[i::p]+R[p-i::p]:
        while v[j]%p == 0:
            v[j] //= p
            lst[j].append(p)
Q,*qs = map(int,open(0).read().split())
for x in qs:
    print(*sorted(lst[x]))
0