結果

問題 No.1063 ルートの計算 / Sqrt Calculation
ユーザー TomoyarnTomoyarn
提出日時 2022-02-11 06:06:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 59,516 KB
最終ジャッジ日時 2024-06-26 23:03:17
合計ジャッジ時間 1,483 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,064 KB
testcase_01 AC 35 ms
53,936 KB
testcase_02 AC 36 ms
52,940 KB
testcase_03 AC 38 ms
59,516 KB
testcase_04 AC 35 ms
52,744 KB
testcase_05 AC 38 ms
59,184 KB
testcase_06 AC 38 ms
58,000 KB
testcase_07 AC 38 ms
58,644 KB
testcase_08 AC 39 ms
58,060 KB
testcase_09 AC 39 ms
58,704 KB
testcase_10 AC 38 ms
58,008 KB
testcase_11 AC 38 ms
59,108 KB
testcase_12 AC 37 ms
58,076 KB
testcase_13 AC 38 ms
59,384 KB
testcase_14 AC 38 ms
58,204 KB
testcase_15 AC 37 ms
58,644 KB
testcase_16 AC 38 ms
58,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def yukicoder1063(n):
    x = int(n ** 0.5)
    b = n
    for i in range(1, x + 1):
        if n % (i ** 2) == 0:
            a = i
    b = n // (a ** 2)
    ans = '{} {}'.format(a, b)
    return ans
    

n = int(input())
print(yukicoder1063(n))



0