結果

問題 No.136 Yet Another GCD Problem
ユーザー tentententen
提出日時 2020-11-17 20:37:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 408 bytes
コンパイル時間 2,443 ms
コンパイル使用メモリ 74,296 KB
実行使用メモリ 54,372 KB
最終ジャッジ日時 2024-07-23 08:27:23
合計ジャッジ時間 8,511 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,136 KB
testcase_01 AC 113 ms
53,040 KB
testcase_02 AC 125 ms
54,172 KB
testcase_03 AC 126 ms
54,196 KB
testcase_04 AC 125 ms
54,192 KB
testcase_05 AC 130 ms
53,900 KB
testcase_06 AC 128 ms
54,188 KB
testcase_07 AC 129 ms
54,372 KB
testcase_08 AC 129 ms
54,076 KB
testcase_09 AC 128 ms
54,188 KB
testcase_10 AC 128 ms
54,028 KB
testcase_11 AC 127 ms
53,884 KB
testcase_12 AC 127 ms
54,188 KB
testcase_13 AC 129 ms
54,132 KB
testcase_14 AC 130 ms
54,000 KB
testcase_15 AC 129 ms
53,984 KB
testcase_16 AC 130 ms
54,040 KB
testcase_17 AC 129 ms
54,032 KB
testcase_18 AC 128 ms
54,300 KB
testcase_19 AC 125 ms
54,228 KB
testcase_20 AC 127 ms
54,264 KB
testcase_21 AC 132 ms
54,084 KB
testcase_22 AC 128 ms
54,364 KB
testcase_23 AC 130 ms
54,232 KB
testcase_24 AC 127 ms
54,020 KB
testcase_25 AC 126 ms
54,036 KB
testcase_26 AC 126 ms
54,292 KB
testcase_27 AC 126 ms
54,176 KB
testcase_28 AC 128 ms
53,900 KB
testcase_29 AC 128 ms
54,004 KB
testcase_30 AC 126 ms
53,892 KB
testcase_31 AC 125 ms
53,992 KB
testcase_32 AC 124 ms
54,112 KB
testcase_33 AC 128 ms
54,012 KB
testcase_34 AC 126 ms
54,200 KB
testcase_35 AC 124 ms
54,200 KB
testcase_36 AC 126 ms
54,220 KB
testcase_37 AC 128 ms
54,172 KB
testcase_38 AC 113 ms
53,004 KB
testcase_39 AC 128 ms
54,144 KB
testcase_40 AC 125 ms
54,164 KB
testcase_41 AC 128 ms
53,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        int ans = 1;
        for (int i = 2; i <= Math.sqrt(n); i++) {
            if (n % i == 0) {
                ans = n / i;
                break;
            }
        }
        System.out.println(ans);
    }
}
0