結果

問題 No.414 衝動
ユーザー souhei gunjisouhei gunji
提出日時 2018-12-15 18:19:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 389 ms / 1,000 ms
コード長 259 bytes
コンパイル時間 76 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-04-27 08:36:17
合計ジャッジ時間 2,862 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,264 KB
testcase_01 AC 30 ms
11,136 KB
testcase_02 AC 27 ms
11,264 KB
testcase_03 AC 372 ms
11,136 KB
testcase_04 AC 28 ms
11,136 KB
testcase_05 AC 389 ms
11,136 KB
testcase_06 AC 381 ms
11,136 KB
testcase_07 AC 30 ms
11,136 KB
testcase_08 AC 262 ms
11,264 KB
testcase_09 AC 388 ms
11,136 KB
testcase_10 AC 28 ms
11,264 KB
testcase_11 AC 30 ms
11,136 KB
testcase_12 AC 27 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import decimal
import math
decimal.getcontext().prec=15
m = decimal.Decimal(input())

q = int(math.sqrt(m))

for i in range(2, q+1):
    if (m % i) == 0:
        print("{} {}".format((m // i), m / (m // i)))
        break
else:
    print("{} {}".format(1,m))
0