結果

問題 No.414 衝動
ユーザー pluto77pluto77
提出日時 2016-08-28 16:34:34
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 97 ms / 1,000 ms
コード長 108 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 76,564 KB
実行使用メモリ 76,948 KB
最終ジャッジ日時 2024-04-27 08:24:01
合計ジャッジ時間 2,217 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
76,948 KB
testcase_01 AC 76 ms
75,392 KB
testcase_02 AC 76 ms
75,552 KB
testcase_03 AC 92 ms
76,416 KB
testcase_04 AC 76 ms
75,328 KB
testcase_05 AC 92 ms
76,308 KB
testcase_06 AC 94 ms
76,700 KB
testcase_07 AC 78 ms
75,424 KB
testcase_08 AC 90 ms
76,316 KB
testcase_09 AC 97 ms
76,436 KB
testcase_10 AC 76 ms
75,660 KB
testcase_11 AC 78 ms
76,680 KB
testcase_12 AC 78 ms
75,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#YUKI414

m=int(raw_input())
x=1
y=m
i=2
while i**2<=m:
 if m%i==0:
  x=i
  y=m/i
  break
 i+=1
 
print x,y
0