結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー Alex WiceAlex Wice
提出日時 2020-05-29 21:22:03
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 1,813 ms
コンパイル使用メモリ 76,728 KB
実行使用メモリ 76,600 KB
最終ジャッジ日時 2024-11-06 02:10:15
合計ジャッジ時間 2,636 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,448 KB
testcase_01 AC 77 ms
75,432 KB
testcase_02 AC 75 ms
75,552 KB
testcase_03 AC 74 ms
75,564 KB
testcase_04 AC 74 ms
75,436 KB
testcase_05 AC 73 ms
75,580 KB
testcase_06 AC 74 ms
75,680 KB
testcase_07 AC 81 ms
76,600 KB
testcase_08 AC 76 ms
75,396 KB
testcase_09 AC 74 ms
76,300 KB
testcase_10 AC 74 ms
75,404 KB
testcase_11 AC 73 ms
75,640 KB
testcase_12 AC 74 ms
76,588 KB
testcase_13 AC 73 ms
75,924 KB
testcase_14 AC 74 ms
75,436 KB
testcase_15 AC 72 ms
75,548 KB
testcase_16 AC 75 ms
75,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

FAST_IO = 0
if FAST_IO:
    import io, sys, atexit
    rr = iter(sys.stdin.read().splitlines()).next
    sys.stdout = _OUTPUT_BUFFER = io.BytesIO()
    @atexit.register
    def write():
        sys.__stdout__.write(_OUTPUT_BUFFER.getvalue())
else:
    rr = raw_input
rri = lambda: int(rr())
rrm = lambda: map(int, rr().split())

####

N = rri()

ans = 1
bns = 1

d=2
while d * d <= N:
    e = 0
    while N%d == 0:
        N //= d
        e += 1
    if e:
        q,r = e//2, e%2
        ans *= (d)**q
        bns *= d**r
    d += 1 + (d&1)

if N > 1:
    bns *= N
print ans,bns
0