結果

問題 No.136 Yet Another GCD Problem
ユーザー crazybbb3crazybbb3
提出日時 2017-01-29 23:00:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 1,791 bytes
コンパイル時間 2,262 ms
コンパイル使用メモリ 77,584 KB
実行使用メモリ 37,140 KB
最終ジャッジ日時 2024-06-06 09:32:40
合計ジャッジ時間 6,058 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
36,668 KB
testcase_01 AC 59 ms
37,044 KB
testcase_02 AC 58 ms
36,512 KB
testcase_03 AC 58 ms
36,800 KB
testcase_04 AC 58 ms
36,956 KB
testcase_05 AC 58 ms
36,672 KB
testcase_06 AC 58 ms
36,816 KB
testcase_07 AC 60 ms
36,956 KB
testcase_08 AC 58 ms
36,956 KB
testcase_09 AC 59 ms
36,912 KB
testcase_10 AC 58 ms
37,140 KB
testcase_11 AC 59 ms
37,084 KB
testcase_12 AC 60 ms
37,024 KB
testcase_13 AC 59 ms
36,692 KB
testcase_14 AC 60 ms
36,324 KB
testcase_15 AC 59 ms
36,824 KB
testcase_16 AC 60 ms
37,076 KB
testcase_17 AC 60 ms
36,828 KB
testcase_18 AC 60 ms
36,420 KB
testcase_19 AC 60 ms
36,592 KB
testcase_20 AC 55 ms
36,456 KB
testcase_21 AC 54 ms
36,864 KB
testcase_22 AC 55 ms
36,720 KB
testcase_23 AC 55 ms
36,792 KB
testcase_24 AC 54 ms
37,044 KB
testcase_25 AC 54 ms
37,044 KB
testcase_26 AC 55 ms
36,956 KB
testcase_27 AC 54 ms
37,120 KB
testcase_28 AC 54 ms
37,028 KB
testcase_29 AC 53 ms
36,828 KB
testcase_30 AC 54 ms
36,828 KB
testcase_31 AC 54 ms
36,788 KB
testcase_32 AC 54 ms
37,140 KB
testcase_33 AC 55 ms
37,028 KB
testcase_34 AC 53 ms
36,788 KB
testcase_35 AC 53 ms
37,028 KB
testcase_36 AC 53 ms
36,800 KB
testcase_37 AC 54 ms
36,928 KB
testcase_38 AC 56 ms
36,904 KB
testcase_39 AC 55 ms
36,820 KB
testcase_40 AC 55 ms
36,872 KB
testcase_41 AC 55 ms
36,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.util.StringTokenizer;

public class Main {

    void solve() throws IOException {
        int n = ni(), k = ni();

        for (int i = 2; i * i <= n; i++) {
            if (n % i == 0) {
                out.println(n / i);
                return;
            }
        }

        out.println(1);
    }

    String ns() throws IOException {
        while (!tok.hasMoreTokens()) {
            tok = new StringTokenizer(in.readLine(), " ");
        }
        return tok.nextToken();
    }

    int ni() throws IOException {
        return Integer.parseInt(ns());
    }

    long nl() throws IOException {
        return Long.parseLong(ns());
    }

    double nd() throws IOException {
        return Double.parseDouble(ns());
    }

    String[] nsa(int n) throws IOException {
        String[] res = new String[n];
        for (int i = 0; i < n; i++) {
            res[i] = ns();
        }
        return res;
    }

    int[] nia(int n) throws IOException {
        int[] res = new int[n];
        for (int i = 0; i < n; i++) {
            res[i] = ni();
        }
        return res;
    }

    long[] nla(int n) throws IOException {
        long[] res = new long[n];
        for (int i = 0; i < n; i++) {
            res[i] = nl();
        }
        return res;
    }

    static BufferedReader in;
    static PrintWriter out;
    static StringTokenizer tok;

    public static void main(String[] args) throws IOException {
        in = new BufferedReader(new InputStreamReader(System.in));
        out = new PrintWriter(System.out);
        tok = new StringTokenizer("");
        Main main = new Main();
        main.solve();
        out.close();
    }
}
0