結果

問題 No.414 衝動
ユーザー pluto77pluto77
提出日時 2016-08-28 16:34:34
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 93 ms / 1,000 ms
コード長 108 bytes
コンパイル時間 1,877 ms
コンパイル使用メモリ 76,588 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-11-15 09:07:32
合計ジャッジ時間 3,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
76,416 KB
testcase_01 AC 78 ms
75,464 KB
testcase_02 AC 78 ms
75,264 KB
testcase_03 AC 93 ms
76,452 KB
testcase_04 AC 77 ms
75,556 KB
testcase_05 AC 92 ms
76,332 KB
testcase_06 AC 93 ms
76,416 KB
testcase_07 AC 76 ms
75,264 KB
testcase_08 AC 87 ms
76,444 KB
testcase_09 AC 91 ms
76,800 KB
testcase_10 AC 79 ms
75,520 KB
testcase_11 AC 78 ms
76,348 KB
testcase_12 AC 78 ms
75,776 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