結果
問題 | No.414 衝動 |
ユーザー | elphe |
提出日時 | 2024-11-14 14:17:47 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 11 ms / 1,000 ms |
コード長 | 311 bytes |
コンパイル時間 | 730 ms |
コンパイル使用メモリ | 67,476 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 14:17:49 |
合計ジャッジ時間 | 1,873 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 13 |
ソースコード
#include <iostream> #include <cstdint> using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); uint64_t M; cin >> M; uint32_t ans = 1; for (uint32_t i = 2; static_cast<uint64_t>(i) * i <= M; ++i) if (M % i == 0) ans = i; cout << ans << ' ' << M / ans << '\n'; return 0; }