結果

問題 No.358 も~っと!門松列
ユーザー mitsuomitsuo
提出日時 2016-05-04 12:28:49
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 936 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 77,136 KB
実行使用メモリ 41,316 KB
最終ジャッジ日時 2024-10-05 06:21:51
合計ジャッジ時間 5,769 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
40,948 KB
testcase_01 AC 110 ms
41,012 KB
testcase_02 AC 100 ms
40,824 KB
testcase_03 AC 101 ms
40,940 KB
testcase_04 AC 124 ms
40,748 KB
testcase_05 AC 127 ms
41,084 KB
testcase_06 AC 127 ms
40,996 KB
testcase_07 AC 127 ms
41,068 KB
testcase_08 AC 119 ms
41,216 KB
testcase_09 AC 104 ms
41,048 KB
testcase_10 AC 106 ms
40,952 KB
testcase_11 AC 103 ms
41,128 KB
testcase_12 AC 114 ms
41,044 KB
testcase_13 AC 117 ms
41,316 KB
testcase_14 AC 121 ms
41,084 KB
testcase_15 AC 119 ms
41,080 KB
testcase_16 AC 119 ms
40,740 KB
testcase_17 AC 106 ms
41,300 KB
testcase_18 AC 115 ms
40,940 KB
testcase_19 AC 101 ms
41,192 KB
testcase_20 AC 128 ms
41,076 KB
testcase_21 AC 118 ms
40,008 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) {

		if (a1 != a2 && a2 != a3 && a1 != a3) {
			if (a2 < a1 && a2 < a3) {
				return "INF";
			}
			if (a2 > a1 && a2 > a3) {
				return "INF";
			}
		}

		
		int ans = 0;
		for (int p = 1; p < 1000; 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++;
				}
			}
		}
		
		return String.valueOf(ans);

	}
}
0