結果

問題 No.414 衝動
ユーザー mesame3993mesame3993
提出日時 2021-11-16 15:15:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 1,000 ms
コード長 430 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 58,716 KB
最終ジャッジ日時 2024-12-17 14:23:07
合計ジャッジ時間 1,584 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
58,292 KB
testcase_01 AC 36 ms
52,380 KB
testcase_02 AC 37 ms
53,940 KB
testcase_03 AC 53 ms
58,716 KB
testcase_04 AC 52 ms
58,228 KB
testcase_05 AC 52 ms
58,004 KB
testcase_06 AC 52 ms
57,956 KB
testcase_07 AC 38 ms
53,788 KB
testcase_08 AC 46 ms
57,796 KB
testcase_09 AC 53 ms
58,244 KB
testcase_10 AC 35 ms
52,348 KB
testcase_11 AC 38 ms
58,592 KB
testcase_12 AC 41 ms
57,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def make_divisors(n):
  lower_divisors, upper_divisors = [], []
  i = 1
  while i*i <= n:
    if n % i == 0:
      lower_divisors.append(i)
      if i != n // i:
        upper_divisors.append(n//i)
    i += 1
  return lower_divisors + upper_divisors[::-1]

def main():
  from sys import stdin
  input=stdin.readline
  m = int(input())
  f = make_divisors(m)
  if len(f) > 2:
    print(f[1], m//f[1])
  else:
    print(1, m)
main()
0