結果

問題 No.414 衝動
ユーザー dangodango
提出日時 2023-06-13 16:30:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 1,000 ms
コード長 357 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 59,168 KB
最終ジャッジ日時 2024-06-22 01:47:16
合計ジャッジ時間 1,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
59,168 KB
testcase_01 AC 32 ms
52,896 KB
testcase_02 AC 33 ms
52,864 KB
testcase_03 AC 65 ms
58,552 KB
testcase_04 AC 60 ms
58,732 KB
testcase_05 AC 46 ms
57,876 KB
testcase_06 AC 46 ms
58,040 KB
testcase_07 AC 36 ms
52,988 KB
testcase_08 AC 39 ms
58,200 KB
testcase_09 AC 58 ms
57,636 KB
testcase_10 AC 31 ms
52,936 KB
testcase_11 AC 33 ms
58,968 KB
testcase_12 AC 37 ms
57,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor(N):
  divisors = set()
  for i in range(1, int(N ** 0.5) + 1):
    if N % i == 0:
      divisors.add(i)
      divisors.add(int(N / i))
  return list(sorted(list(divisors)))
def prime(N):
  return len(divisor(N)) == 2
N = int(input())
if N == 1:
  print(1, 1)
else:
  if prime(N):
    print(1, N)
  else:
    K = divisor(N)
    print(K[1], K[-2])
0