結果
問題 |
No.414 衝動
|
ユーザー |
![]() |
提出日時 | 2018-03-08 20:18:33 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 12 ms / 1,000 ms |
コード長 | 604 bytes |
コンパイル時間 | 541 ms |
コンパイル使用メモリ | 67,784 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-15 09:17:48 |
合計ジャッジ時間 | 1,375 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
ソースコード
// No.414 衝動 // https://yukicoder.me/problems/no/414 // #include <iostream> #include <cmath> using namespace std; unsigned long solve(unsigned long M); int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); unsigned long M; cin >> M; unsigned long ans = solve(M); cout << ans << " " << M / ans << endl; } unsigned long solve(unsigned long M) { unsigned long ans = 0; for (unsigned long i = 2; i <= sqrt(M); ++i) { if (M % i == 0) { ans = i; break; } } if (!ans) ans = 1; return ans; }