結果

問題 No.358 も~っと!門松列
ユーザー YamaKasaYamaKasa
提出日時 2018-05-22 21:08:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 144 ms / 1,000 ms
コード長 809 bytes
コンパイル時間 2,046 ms
コンパイル使用メモリ 76,932 KB
実行使用メモリ 41,728 KB
最終ジャッジ日時 2024-06-28 15:51:53
合計ジャッジ時間 5,991 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,332 KB
testcase_01 AC 135 ms
41,436 KB
testcase_02 AC 130 ms
41,336 KB
testcase_03 AC 132 ms
41,056 KB
testcase_04 AC 127 ms
41,452 KB
testcase_05 AC 132 ms
41,148 KB
testcase_06 AC 128 ms
41,496 KB
testcase_07 AC 130 ms
41,044 KB
testcase_08 AC 129 ms
41,120 KB
testcase_09 AC 129 ms
41,280 KB
testcase_10 AC 139 ms
41,388 KB
testcase_11 AC 128 ms
41,040 KB
testcase_12 AC 115 ms
40,244 KB
testcase_13 AC 136 ms
41,524 KB
testcase_14 AC 127 ms
41,344 KB
testcase_15 AC 137 ms
41,304 KB
testcase_16 AC 136 ms
41,472 KB
testcase_17 AC 135 ms
41,588 KB
testcase_18 AC 144 ms
41,668 KB
testcase_19 AC 135 ms
41,728 KB
testcase_20 AC 134 ms
41,352 KB
testcase_21 AC 138 ms
41,616 KB
testcase_22 AC 131 ms
41,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int A1 = scan.nextInt();
		int A2 = scan.nextInt();
		int A3 = scan.nextInt();
		scan.close();

		int max = A1;
		if(max < A2) {
			max = A2;
		}
		if(max < A3) {
			max = A3;
		}

		int cnt = 0;
		if(isCheck(A1, A2, A3)) {
			System.out.println("INF");
			System.exit(0);
		}else {
			for(int i = 2; i <= max; i++) {
				int B1 = A1 % i;
				int B2 = A2 % i;
				int B3 = A3 % i;
				if(isCheck(B1, B2, B3)) {
					cnt ++;
				}
			}
		}
		System.out.println(cnt);
	}
	public static boolean isCheck(int A1, int A2, int A3) {
		if(A1 > A2 && A2 < A3 && A1 != A3) {
			return true;
		}else if(A1 < A2 && A2 > A3 && A1 != A3) {
			return true;
		}else {
			return false;
		}
	}
}
0