結果

問題 No.358 も~っと!門松列
ユーザー kenji_shioyakenji_shioya
提出日時 2016-05-27 23:18:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 957 bytes
コンパイル時間 5,408 ms
コンパイル使用メモリ 77,392 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-10-07 17:09:53
合計ジャッジ時間 8,061 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
53,708 KB
testcase_01 AC 135 ms
53,860 KB
testcase_02 AC 132 ms
53,980 KB
testcase_03 AC 131 ms
54,132 KB
testcase_04 AC 133 ms
53,796 KB
testcase_05 AC 132 ms
53,880 KB
testcase_06 AC 133 ms
53,812 KB
testcase_07 AC 120 ms
53,148 KB
testcase_08 AC 133 ms
54,008 KB
testcase_09 AC 132 ms
53,928 KB
testcase_10 AC 131 ms
54,228 KB
testcase_11 AC 132 ms
54,108 KB
testcase_12 AC 135 ms
54,224 KB
testcase_13 AC 130 ms
54,068 KB
testcase_14 AC 133 ms
53,720 KB
testcase_15 AC 134 ms
54,248 KB
testcase_16 AC 133 ms
54,236 KB
testcase_17 AC 132 ms
53,980 KB
testcase_18 AC 131 ms
53,936 KB
testcase_19 AC 132 ms
53,772 KB
testcase_20 AC 131 ms
53,860 KB
testcase_21 AC 131 ms
54,232 KB
testcase_22 AC 131 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

    Scanner sc = new Scanner(System.in);

    int[] array = new int[3];

    for (int n = 0; n < 3; n++){
      array[n] = sc.nextInt();
    }

    int count = 0;

    if (array[0] == array[1] || array[0] == array[2] || array[1] == array[2]){
      System.out.println(0);
    }else if (array[1] > array[0] && array[1] > array[2] || array[1] < array[0] && array[1] < array[2]){
      System.out.println("INF");
    }else{
      int bigger = Math.max(array[0], array[1]);
      int max = Math.max(bigger, array[2]);
      for (int p = 2; p <= max; p++){
        int first = array[0] % p;
        int second = array[1] % p;
        int third = array[2] % p;

        if (first != third){
          if (second > first && second > third || second < first && second < third){
            count++;
          }
        }
      }
      System.out.println(count);
    }

  }
}
0