結果

問題 No.136 Yet Another GCD Problem
ユーザー GOTKAKO
提出日時 2025-07-13 17:56:13
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 293 bytes
コンパイル時間 1,731 ms
コンパイル使用メモリ 194,608 KB
実行使用メモリ 7,844 KB
最終ジャッジ日時 2025-07-13 17:56:17
合計ジャッジ時間 3,461 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 39
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);

    int N,K; cin >> N >> K;
    int answer = 0;
    for(int i=2; i<=N; i++) if(N%i == 0){
        int v = N/i;
        answer = v; break;
    }
    cout << answer << endl;
}
0