結果
問題 | No.414 衝動 |
ユーザー | tomatonosuke |
提出日時 | 2016-08-26 22:54:53 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 202 ms / 1,000 ms |
コード長 | 206 bytes |
コンパイル時間 | 587 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-11-15 09:04:05 |
合計ジャッジ時間 | 2,068 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
ソースコード
import math targ = int(input()) for t in range(2,math.floor(math.sqrt(targ) ) + 1): if targ % t == 0: print(str(t) + ' ' + str(targ // t)) break else: print(str(1) + " " + str(targ))