結果

問題 No.358 も~っと!門松列
ユーザー GrenacheGrenache
提出日時 2016-04-29 11:39:40
言語 Java
(openjdk 23)
結果
AC  
実行時間 121 ms / 1,000 ms
コード長 1,049 bytes
コンパイル時間 3,024 ms
コンパイル使用メモリ 78,048 KB
実行使用メモリ 41,528 KB
最終ジャッジ日時 2024-10-04 17:37:55
合計ジャッジ時間 6,730 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
41,252 KB
testcase_01 AC 107 ms
41,184 KB
testcase_02 AC 116 ms
41,336 KB
testcase_03 AC 115 ms
41,272 KB
testcase_04 AC 117 ms
41,184 KB
testcase_05 AC 112 ms
40,924 KB
testcase_06 AC 117 ms
41,184 KB
testcase_07 AC 119 ms
41,188 KB
testcase_08 AC 115 ms
40,164 KB
testcase_09 AC 117 ms
41,108 KB
testcase_10 AC 105 ms
41,292 KB
testcase_11 AC 114 ms
40,044 KB
testcase_12 AC 119 ms
41,360 KB
testcase_13 AC 104 ms
40,616 KB
testcase_14 AC 113 ms
40,408 KB
testcase_15 AC 106 ms
41,380 KB
testcase_16 AC 121 ms
40,952 KB
testcase_17 AC 113 ms
41,240 KB
testcase_18 AC 119 ms
41,260 KB
testcase_19 AC 109 ms
40,080 KB
testcase_20 AC 110 ms
41,528 KB
testcase_21 AC 118 ms
41,428 KB
testcase_22 AC 103 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main_yukicoder358 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int[] a = new int[3];
        int max = 0;
        a[0] = sc.nextInt();
        max = Math.max(max, a[0]);
        a[1] = sc.nextInt();
        max = Math.max(max, a[1]);
        a[2] = sc.nextInt();
        max = Math.max(max, a[2]);

        if (isKado(a)) {
        	System.out.println("INF");
        } else {
        	int ret = 0;
        	for (int p = 1; p <= max; p++) {
        		int[] tmp = new int[3];
        		tmp[0] = a[0] % p;
        		tmp[1] = a[1] % p;
        		tmp[2] = a[2] % p;
        		if (isKado(tmp)) {
        			ret++;
        		}
        	}

        	System.out.println(ret);
        }

        sc.close();
    }

	private static boolean isKado(int[] a) {
		if (a[0] == a[1] || a[1] == a[2] || a[2] == a[0]) {
			return false;
		}

		if (a[1] > a[0] && a[1] > a[2]) {
			return true;
		}
		if (a[1] < a[0] && a[1] < a[2]) {
			return true;
		}

		return false;
	}
}
0