結果

問題 No.1498 Factorization from -1 to 1
ユーザー convexineqconvexineq
提出日時 2021-05-05 21:42:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,584 ms / 3,000 ms
コード長 660 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 105,580 KB
最終ジャッジ日時 2024-09-13 14:27:01
合計ジャッジ時間 36,631 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,408 ms
82,376 KB
testcase_01 AC 1,411 ms
82,416 KB
testcase_02 AC 1,410 ms
82,384 KB
testcase_03 AC 1,470 ms
105,280 KB
testcase_04 AC 1,519 ms
105,164 KB
testcase_05 AC 1,565 ms
105,416 KB
testcase_06 AC 1,567 ms
105,428 KB
testcase_07 AC 1,560 ms
105,292 KB
testcase_08 AC 1,584 ms
105,036 KB
testcase_09 AC 1,562 ms
105,580 KB
testcase_10 AC 1,428 ms
82,628 KB
testcase_11 AC 1,431 ms
82,744 KB
testcase_12 AC 1,435 ms
82,488 KB
testcase_13 AC 1,443 ms
82,624 KB
testcase_14 AC 1,438 ms
82,628 KB
testcase_15 AC 1,413 ms
82,528 KB
testcase_16 AC 1,414 ms
82,732 KB
testcase_17 AC 1,417 ms
82,544 KB
testcase_18 AC 1,420 ms
82,748 KB
testcase_19 AC 1,409 ms
82,704 KB
testcase_20 AC 1,406 ms
82,568 KB
testcase_21 AC 1,408 ms
82,636 KB
testcase_22 AC 1,409 ms
82,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(N): #N以下の素数のリストを返す
    N+=1
    is_prime_list = [True]*N
    m = int(N**0.5)+1
    for i in range(3,m,2):
        if is_prime_list[i]:
            is_prime_list[i*i::2*i]=[False]*((N-i*i-1)//(2*i)+1)
    return [2] + [i for i in range(3,N,2) if is_prime_list[i]]

M = 10**5+2
primes = [i for i in Eratosthenes(M) if i%4 != 3]
lst = [[] for _ in range(M)]
for i in range(1,M):
    x = i*i+1
    for p in primes:
        if p*p > x: break
        while x%p==0:
            lst[i].append(p)
            x //= p
    if x > 1:
        lst[i].append(x)

Q,*qs = map(int,open(0).read().split())
for x in qs:
    print(*lst[x])
0