結果
問題 | No.414 衝動 |
ユーザー |
![]() |
提出日時 | 2019-05-17 15:00:18 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 170 bytes |
コンパイル時間 | 55 ms |
コンパイル使用メモリ | 6,944 KB |
実行使用メモリ | 38,160 KB |
最終ジャッジ日時 | 2024-09-17 05:54:47 |
合計ジャッジ時間 | 3,483 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 WA * 2 |
ソースコード
import math M = int(raw_input()) for i in range(2, int(math.sqrt(M))+1): if M%i == 0: print str(i)+' '+str(M/i) break if i == int(math.sqrt(M)): print '1 '+str(M)