結果
| 問題 | No.414 衝動 |
| コンテスト | |
| ユーザー |
momoyuu
|
| 提出日時 | 2023-10-24 18:34:29 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 4 ms / 1,000 ms |
| + 371µs | |
| コード長 | 305 bytes |
| 記録 | |
| コンパイル時間 | 1,866 ms |
| コンパイル使用メモリ | 333,112 KB |
| 実行使用メモリ | 9,732 KB |
| 最終ジャッジ日時 | 2026-09-03 05:48:22 |
| 合計ジャッジ時間 | 3,171 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 13 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using ll = long long;
int main(){
cin.tie(nullptr);
ios::sync_with_stdio(false);
ll m;
cin>>m;
for(ll i = 2;i*i<=m;i++){
if(m%i!=0) continue;
cout<<i<<" "<<m/i<<endl;
return 0;
}
cout<<1<<" "<<m<<endl;
}
momoyuu