結果

問題 No.136 Yet Another GCD Problem
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-22 19:14:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 311 bytes
コンパイル時間 3,597 ms
コンパイル使用メモリ 84,116 KB
実行使用メモリ 55,592 KB
最終ジャッジ日時 2024-10-12 19:17:11
合計ジャッジ時間 8,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,612 KB
testcase_01 AC 113 ms
52,908 KB
testcase_02 AC 111 ms
52,640 KB
testcase_03 AC 124 ms
54,048 KB
testcase_04 AC 114 ms
53,116 KB
testcase_05 AC 126 ms
53,648 KB
testcase_06 AC 115 ms
52,512 KB
testcase_07 AC 112 ms
53,004 KB
testcase_08 AC 118 ms
53,940 KB
testcase_09 AC 124 ms
54,472 KB
testcase_10 AC 128 ms
53,744 KB
testcase_11 AC 124 ms
54,256 KB
testcase_12 AC 127 ms
54,020 KB
testcase_13 AC 125 ms
54,172 KB
testcase_14 AC 125 ms
53,928 KB
testcase_15 AC 124 ms
53,908 KB
testcase_16 AC 124 ms
54,276 KB
testcase_17 AC 127 ms
53,644 KB
testcase_18 AC 125 ms
54,272 KB
testcase_19 AC 126 ms
53,984 KB
testcase_20 AC 125 ms
54,000 KB
testcase_21 AC 124 ms
55,592 KB
testcase_22 AC 115 ms
53,056 KB
testcase_23 AC 127 ms
53,812 KB
testcase_24 AC 125 ms
54,132 KB
testcase_25 AC 125 ms
53,988 KB
testcase_26 AC 121 ms
54,108 KB
testcase_27 AC 130 ms
53,780 KB
testcase_28 AC 120 ms
52,968 KB
testcase_29 AC 123 ms
54,004 KB
testcase_30 AC 114 ms
52,764 KB
testcase_31 AC 112 ms
52,732 KB
testcase_32 AC 122 ms
53,668 KB
testcase_33 AC 113 ms
53,064 KB
testcase_34 AC 131 ms
53,964 KB
testcase_35 AC 123 ms
53,824 KB
testcase_36 AC 115 ms
52,860 KB
testcase_37 AC 125 ms
53,952 KB
testcase_38 AC 123 ms
54,284 KB
testcase_39 AC 125 ms
54,152 KB
testcase_40 AC 121 ms
53,860 KB
testcase_41 AC 114 ms
53,252 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 ans = 0;
    for(int i = n - 1; i >= 1; i--) {
      if((n % i) == 0) {
        ans = i;
        break;
      }
    }
    System.out.println(ans);
  }
}
0