結果

問題 No.414 衝動
ユーザー momoyuu
提出日時 2023-10-24 18:34:29
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 12 ms / 1,000 ms
コード長 305 bytes
コンパイル時間 2,634 ms
コンパイル使用メモリ 244,748 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-24 11:39:26
合計ジャッジ時間 3,474 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}

0