結果
問題 | No.414 衝動 |
ユーザー | kurenai3110 |
提出日時 | 2016-08-26 23:06:00 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 22 ms / 1,000 ms |
コード長 | 307 bytes |
コンパイル時間 | 595 ms |
コンパイル使用メモリ | 57,304 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-15 09:04:26 |
合計ジャッジ時間 | 1,461 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
ソースコード
#include <iostream> #include <vector> using namespace std; int main() { long long int m; cin >> m; long long int nokori = m; for (int i = 2; i <= nokori; i++) { if (!(m%i)) { cout << i << " " << m / i << endl; return 0; } nokori = m / i; } cout << 1 << " " << m << endl; return 0; }