結果

問題 No.358 も~っと!門松列
ユーザー spaciaspacia
提出日時 2016-06-08 14:58:55
言語 Java
(openjdk 23)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 703 bytes
コンパイル時間 2,855 ms
コンパイル使用メモリ 76,744 KB
実行使用メモリ 41,396 KB
最終ジャッジ日時 2024-10-09 03:04:39
合計ジャッジ時間 6,552 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,240 KB
testcase_01 AC 116 ms
41,264 KB
testcase_02 AC 117 ms
40,900 KB
testcase_03 AC 118 ms
41,036 KB
testcase_04 AC 116 ms
40,792 KB
testcase_05 AC 102 ms
40,036 KB
testcase_06 AC 103 ms
39,896 KB
testcase_07 AC 101 ms
39,584 KB
testcase_08 AC 104 ms
40,200 KB
testcase_09 AC 121 ms
41,172 KB
testcase_10 AC 113 ms
41,152 KB
testcase_11 AC 116 ms
41,040 KB
testcase_12 AC 108 ms
40,452 KB
testcase_13 AC 113 ms
41,032 KB
testcase_14 AC 117 ms
41,056 KB
testcase_15 AC 108 ms
40,088 KB
testcase_16 AC 115 ms
41,016 KB
testcase_17 AC 116 ms
40,880 KB
testcase_18 AC 105 ms
39,872 KB
testcase_19 AC 117 ms
40,720 KB
testcase_20 AC 116 ms
41,396 KB
testcase_21 AC 120 ms
40,912 KB
testcase_22 AC 102 ms
40,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main (String[] args) {

		Scanner sc = new Scanner(System.in);

		int a = sc.nextInt();
		int b = sc.nextInt();
		int c = sc.nextInt();

		System.out.println(solve(a, b, c));

		sc.close();

	}

	public static String solve (int a, int b, int c) {

		if (isKadomatsu(a, b, c)) return "INF";
		if (a == b || a == c || b == c) return "0";

		int ret = 0, lim = Math.max(Math.max(a, b), c);
		for (int i = 2; i <= lim; i++)
			if (isKadomatsu(a % i, b % i, c % i)) ret++;
		return ret + "";

	}

	public static boolean isKadomatsu (int a, int b, int c) {
		return ((b < a && b < c) || (b > a && b > c)) && a != b && a != c && b != c;
	}

}
0