結果

問題 No.136 Yet Another GCD Problem
ユーザー kenji_shioyakenji_shioya
提出日時 2016-07-05 00:18:32
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 3,240 ms
コンパイル使用メモリ 77,976 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-10-12 20:14:56
合計ジャッジ時間 9,723 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,248 KB
testcase_01 AC 129 ms
41,044 KB
testcase_02 AC 126 ms
41,300 KB
testcase_03 AC 126 ms
40,964 KB
testcase_04 AC 126 ms
41,196 KB
testcase_05 AC 128 ms
41,296 KB
testcase_06 AC 126 ms
41,044 KB
testcase_07 AC 125 ms
40,852 KB
testcase_08 AC 125 ms
41,120 KB
testcase_09 AC 128 ms
40,996 KB
testcase_10 AC 130 ms
41,428 KB
testcase_11 AC 126 ms
40,844 KB
testcase_12 AC 127 ms
41,152 KB
testcase_13 AC 125 ms
41,060 KB
testcase_14 AC 124 ms
41,028 KB
testcase_15 AC 124 ms
41,176 KB
testcase_16 AC 129 ms
41,024 KB
testcase_17 AC 123 ms
41,368 KB
testcase_18 AC 112 ms
41,216 KB
testcase_19 AC 123 ms
40,860 KB
testcase_20 AC 122 ms
41,504 KB
testcase_21 AC 123 ms
41,104 KB
testcase_22 WA -
testcase_23 AC 126 ms
41,116 KB
testcase_24 WA -
testcase_25 AC 127 ms
41,052 KB
testcase_26 AC 131 ms
41,024 KB
testcase_27 AC 123 ms
41,732 KB
testcase_28 AC 127 ms
41,272 KB
testcase_29 AC 125 ms
41,208 KB
testcase_30 WA -
testcase_31 AC 123 ms
40,820 KB
testcase_32 WA -
testcase_33 AC 124 ms
41,284 KB
testcase_34 AC 123 ms
41,060 KB
testcase_35 AC 127 ms
41,708 KB
testcase_36 AC 127 ms
41,512 KB
testcase_37 AC 126 ms
41,288 KB
testcase_38 AC 109 ms
41,648 KB
testcase_39 AC 126 ms
41,188 KB
testcase_40 AC 124 ms
41,216 KB
testcase_41 AC 124 ms
41,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise144{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();
    int k = sc.nextInt();
    int max = 0;

    for(int i = 3; i <= n / 2; i++){
      if(n % i == 0){
        max = Math.max(max, i);
      }
    }
    System.out.println((max == 0) ? 1 :max);  
  }
}
0