結果
問題 | No.414 衝動 |
ユーザー |
|
提出日時 | 2016-08-26 22:53:20 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 194 bytes |
コンパイル時間 | 125 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 16,000 KB |
最終ジャッジ日時 | 2024-11-08 14:44:00 |
合計ジャッジ時間 | 3,200 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 5 TLE * 1 -- * 7 |
ソースコード
import mathtarg = int(input())for t in range(2,math.floor(targ) + 1):if targ % t == 0:print(str(t) + ' ' + str(targ // t))breakelse:print(str(1) + " " + str(targ))