結果
| 問題 |
No.414 衝動
|
| コンテスト | |
| ユーザー |
syunsuke
|
| 提出日時 | 2019-09-11 22:49:32 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 55 ms / 1,000 ms |
| コード長 | 132 bytes |
| コンパイル時間 | 146 ms |
| コンパイル使用メモリ | 82,116 KB |
| 実行使用メモリ | 57,824 KB |
| 最終ジャッジ日時 | 2024-11-15 09:23:33 |
| 合計ジャッジ時間 | 1,513 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
ソースコード
N=int(input())
import math
n=math.ceil(N**0.5)
for i in range(2,n+1):
if N%i==0:
print(i,N//i)
exit()
print(1,N)
syunsuke