結果

問題 No.136 Yet Another GCD Problem
ユーザー puru
提出日時 2016-04-28 02:48:54
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 300 bytes
コンパイル時間 1,451 ms
コンパイル使用メモリ 158,172 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-04 16:05:05
合計ジャッジ時間 2,400 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 39
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |     scanf("%d%d", &N, &K);
      |     ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main() {
    int N, K;
    scanf("%d%d", &N, &K);

    int tmp = sqrt(N) + 1;
    for (int i = 2; i < tmp; i++) {
        if (N % i == 0) {
            printf("%d\n", N / i);
            return 0;
        }
    }

    printf("1\n");
    return 0;
}
0