結果
問題 | No.2637 Factorize? |
ユーザー | tobbie |
提出日時 | 2024-05-05 22:31:42 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 314 bytes |
コンパイル時間 | 1,579 ms |
コンパイル使用メモリ | 166,348 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-27 23:56:26 |
合計ジャッジ時間 | 2,506 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 32 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) using ll = long long int; int main() { ll P; cin >> P; for (int A = 1; A*A <= P; A++) { if (P % A == 0) { ll B = P / A; cout << A << " " << B << endl; return 0; } } return 0; }