結果

問題 No.414 衝動
ユーザー maspymaspy
提出日時 2020-01-27 18:24:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 548 ms / 1,000 ms
コード長 308 bytes
コンパイル時間 86 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 59,712 KB
最終ジャッジ日時 2024-11-15 09:24:44
合計ジャッジ時間 8,337 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 534 ms
59,212 KB
testcase_01 AC 527 ms
59,156 KB
testcase_02 AC 535 ms
59,168 KB
testcase_03 AC 532 ms
59,352 KB
testcase_04 AC 532 ms
59,456 KB
testcase_05 AC 542 ms
59,308 KB
testcase_06 AC 526 ms
59,608 KB
testcase_07 AC 531 ms
59,692 KB
testcase_08 AC 548 ms
59,568 KB
testcase_09 AC 530 ms
59,320 KB
testcase_10 AC 531 ms
59,516 KB
testcase_11 AC 523 ms
59,228 KB
testcase_12 AC 530 ms
59,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

M = int(read())

x = np.arange(1,10**6 + 10)

div = x[M % x == 0]

div = np.union1d(div, M//div)

if len(div) <= 2:
    print(1, M)
else:
    x = div[1]
    print(x, M//x)
0