結果

問題 No.414 衝動
ユーザー nohakai3nohakai3
提出日時 2022-11-03 10:48:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 1,000 ms
コード長 1,130 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 60,572 KB
最終ジャッジ日時 2024-07-17 21:10:08
合計ジャッジ時間 1,750 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 59 ms
59,712 KB
testcase_01 AC 36 ms
54,464 KB
testcase_02 AC 38 ms
54,904 KB
testcase_03 AC 66 ms
59,496 KB
testcase_04 AC 63 ms
59,552 KB
testcase_05 AC 36 ms
55,164 KB
testcase_06 AC 36 ms
54,940 KB
testcase_07 AC 36 ms
54,360 KB
testcase_08 AC 38 ms
54,644 KB
testcase_09 AC 64 ms
60,572 KB
testcase_10 AC 41 ms
54,776 KB
testcase_11 AC 43 ms
59,892 KB
testcase_12 AC 42 ms
60,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

def is_prime3(q,k=50):
    q = abs(q)
    #計算するまでもなく判定できるものははじく
    if q == 2: return True
    if q < 2 or q&1 == 0: return False

    #n-1=2^s*dとし(但しaは整数、dは奇数)、dを求める
    d = (q-1)>>1
    while d&1 == 0:
        d >>= 1
    
    #判定をk回繰り返す
    for i in range(k):
        a = random.randint(1,q-1)
        t = d
        y = pow(a,t,q)
        #[0,s-1]の範囲すべてをチェック
        while t != q-1 and y != 1 and y != q-1: 
            y = pow(y,2,q)
            t <<= 1
        if y != q-1 and t&1 == 0:
            return False
    return True
def factorization(n):
    arr = []
    temp = n
    for i in range(2, int(-(-n**0.5//1))+1):
        if temp%i==0:
            cnt=0
            while temp%i==0:
                cnt+=1
                temp //= i
            arr.append([i, cnt])

    if temp!=1:
        arr.append([temp, 1])

    if arr==[]:
        arr.append([n, 1])

    return arr
n=int(input())
if is_prime3(n)==True:
    print(1,n)
else:
    print(factorization(n)[0][0],n//factorization(n)[0][0])
0