結果

問題 No.2637 Factorize?
ユーザー NPNP
提出日時 2024-02-19 21:23:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 59,056 KB
最終ジャッジ日時 2024-09-29 01:19:43
合計ジャッジ時間 2,795 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,344 KB
testcase_01 AC 34 ms
58,108 KB
testcase_02 AC 33 ms
53,056 KB
testcase_03 AC 32 ms
53,604 KB
testcase_04 AC 33 ms
53,244 KB
testcase_05 AC 32 ms
54,032 KB
testcase_06 AC 32 ms
52,884 KB
testcase_07 AC 32 ms
52,720 KB
testcase_08 AC 34 ms
52,260 KB
testcase_09 AC 52 ms
57,860 KB
testcase_10 AC 46 ms
57,848 KB
testcase_11 AC 47 ms
57,780 KB
testcase_12 AC 40 ms
57,040 KB
testcase_13 AC 46 ms
57,512 KB
testcase_14 AC 38 ms
57,644 KB
testcase_15 AC 46 ms
57,700 KB
testcase_16 AC 45 ms
58,456 KB
testcase_17 AC 47 ms
58,156 KB
testcase_18 AC 34 ms
57,744 KB
testcase_19 AC 37 ms
57,788 KB
testcase_20 AC 44 ms
57,388 KB
testcase_21 AC 46 ms
59,056 KB
testcase_22 AC 31 ms
53,120 KB
testcase_23 AC 34 ms
52,236 KB
testcase_24 AC 31 ms
54,040 KB
testcase_25 AC 31 ms
52,632 KB
testcase_26 AC 33 ms
52,868 KB
testcase_27 AC 31 ms
52,920 KB
testcase_28 AC 33 ms
52,416 KB
testcase_29 AC 33 ms
53,016 KB
testcase_30 AC 32 ms
54,060 KB
testcase_31 AC 31 ms
52,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

def find_pair(P):
    sqrt_P = int(math.sqrt(P))
    for i in range(sqrt_P, 0, -1):
        if P % i == 0:
            return i, P // i

P = int(input())
A, B = find_pair(P)
print(A, B)
0