結果

問題 No.358 も~っと!門松列
ユーザー mitsuomitsuo
提出日時 2016-05-04 12:20:05
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 870 bytes
コンパイル時間 1,842 ms
コンパイル使用メモリ 77,928 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-10-05 06:21:41
合計ジャッジ時間 5,165 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
39,656 KB
testcase_01 AC 107 ms
40,980 KB
testcase_02 AC 109 ms
39,736 KB
testcase_03 AC 112 ms
41,084 KB
testcase_04 AC 98 ms
40,952 KB
testcase_05 AC 98 ms
40,828 KB
testcase_06 AC 95 ms
41,180 KB
testcase_07 AC 110 ms
41,088 KB
testcase_08 AC 110 ms
41,172 KB
testcase_09 AC 111 ms
41,428 KB
testcase_10 AC 110 ms
41,172 KB
testcase_11 AC 102 ms
40,900 KB
testcase_12 AC 99 ms
40,948 KB
testcase_13 AC 110 ms
41,168 KB
testcase_14 AC 105 ms
41,000 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 105 ms
41,128 KB
testcase_18 WA -
testcase_19 AC 114 ms
40,944 KB
testcase_20 AC 112 ms
40,912 KB
testcase_21 AC 101 ms
40,940 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String input;
		if (args.length == 0) {
			input = sc.nextLine();
		} else {
			input = args[0];
		}
		String[] d = input.split(" ");
		int a1 = Integer.valueOf(d[0]);
		int a2 = Integer.valueOf(d[1]);
		int a3 = Integer.valueOf(d[2]);

		System.out.println(solve(a1, a2, a3));

		sc.close();
	}

	public static String solve(int a1, int a2, int a3) {
		int m = 1000;
		int ans = 0;
		for (int p = 1; p < m; p++) {

			int p1 = a1 % p;
			int p2 = a2 % p;
			int p3 = a3 % p;

			if (p1 != p2 && p2 != p3 && p1 != p3) {
				if (p2 < p1 && p2 < p3) {
					ans++;
				}
				if (p2 > p1 && p2 > p3) {
					ans++;
				}
			}
		}
		if (ans > Math.max(a1, Math.max(a2, a3))) {
			return "INF";
		} else {
			return String.valueOf(ans);
		}

	}
}
0