結果

問題 No.136 Yet Another GCD Problem
ユーザー samplelpmassamplelpmas
提出日時 2017-05-15 19:36:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 372 bytes
コンパイル時間 2,969 ms
コンパイル使用メモリ 73,636 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-09-16 08:09:01
合計ジャッジ時間 8,998 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,032 KB
testcase_01 AC 128 ms
41,308 KB
testcase_02 AC 128 ms
41,124 KB
testcase_03 AC 129 ms
41,304 KB
testcase_04 AC 131 ms
41,232 KB
testcase_05 AC 128 ms
41,312 KB
testcase_06 AC 130 ms
41,084 KB
testcase_07 AC 127 ms
41,092 KB
testcase_08 AC 131 ms
41,192 KB
testcase_09 AC 131 ms
41,312 KB
testcase_10 AC 133 ms
41,472 KB
testcase_11 AC 130 ms
41,036 KB
testcase_12 AC 129 ms
41,312 KB
testcase_13 AC 131 ms
41,060 KB
testcase_14 AC 135 ms
41,128 KB
testcase_15 AC 134 ms
40,964 KB
testcase_16 AC 121 ms
40,236 KB
testcase_17 AC 128 ms
41,216 KB
testcase_18 AC 128 ms
41,464 KB
testcase_19 AC 127 ms
41,344 KB
testcase_20 AC 129 ms
41,204 KB
testcase_21 AC 128 ms
41,064 KB
testcase_22 AC 119 ms
40,236 KB
testcase_23 AC 129 ms
41,200 KB
testcase_24 AC 128 ms
41,312 KB
testcase_25 AC 126 ms
41,272 KB
testcase_26 AC 130 ms
41,324 KB
testcase_27 AC 128 ms
40,968 KB
testcase_28 AC 129 ms
41,104 KB
testcase_29 AC 129 ms
41,384 KB
testcase_30 AC 127 ms
41,056 KB
testcase_31 AC 127 ms
41,160 KB
testcase_32 AC 128 ms
41,184 KB
testcase_33 AC 116 ms
40,216 KB
testcase_34 AC 130 ms
41,200 KB
testcase_35 AC 129 ms
41,332 KB
testcase_36 AC 127 ms
41,192 KB
testcase_37 AC 131 ms
41,104 KB
testcase_38 AC 130 ms
41,400 KB
testcase_39 AC 130 ms
41,416 KB
testcase_40 AC 126 ms
41,024 KB
testcase_41 AC 120 ms
40,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int N = sc.nextInt();
        int K = sc.nextInt();

        for (int i = N - 1; i >= 1; i--) {

            if (N % i == 0) {
                System.out.println(i);
                break;
            }

        }

    }

}
0