結果

問題 No.358 も~っと!門松列
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-19 22:44:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 910 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 78,092 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-10-02 07:55:19
合計ジャッジ時間 6,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,156 KB
testcase_01 AC 124 ms
41,640 KB
testcase_02 AC 130 ms
41,420 KB
testcase_03 AC 131 ms
41,472 KB
testcase_04 AC 117 ms
40,352 KB
testcase_05 AC 130 ms
41,368 KB
testcase_06 AC 126 ms
41,284 KB
testcase_07 AC 125 ms
41,124 KB
testcase_08 AC 115 ms
40,004 KB
testcase_09 AC 120 ms
40,292 KB
testcase_10 AC 118 ms
40,424 KB
testcase_11 AC 127 ms
41,148 KB
testcase_12 AC 113 ms
40,204 KB
testcase_13 AC 114 ms
40,252 KB
testcase_14 AC 127 ms
41,260 KB
testcase_15 AC 127 ms
41,608 KB
testcase_16 AC 123 ms
41,468 KB
testcase_17 AC 126 ms
41,480 KB
testcase_18 AC 128 ms
41,436 KB
testcase_19 AC 125 ms
41,284 KB
testcase_20 AC 127 ms
41,600 KB
testcase_21 AC 127 ms
41,404 KB
testcase_22 AC 127 ms
41,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int[] a = new int[3];
    for(int i = 0; i < 3; i++) {
      a[i] = sc.nextInt();
    }
    if((a[0] != a[1]) && (a[0] != a[2]) && (a[1] != a[2])) {
      int[] b = a.clone();
      Arrays.sort(b);
      int max = b[2];
      int min = b[0];
      if((a[1] == max) || (a[1] == min)) {
        System.out.println("INF");
      } else {
        int p = 0;
        for(int i = 3; i <= max; i++) {
          int x = a[0] % i;
          int y = a[1] % i;
          int z = a[2] % i;
          int MA = Math.max(x, Math.max(y, z));
          int MI = Math.min(x, Math.min(y, z));
          if((x != y) && (x != z) && (y != z)) {
            if((y == MA) || (y == MI)) p++;
          }
        }
        System.out.println(p);
      }
    } else {
      System.out.println(0);
    }
  }
}
0