結果

問題 No.358 も~っと!門松列
ユーザー ぴろずぴろず
提出日時 2016-04-17 22:34:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 1,000 ms
コード長 699 bytes
コンパイル時間 2,917 ms
コンパイル使用メモリ 74,712 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-10-04 10:33:39
合計ジャッジ時間 5,692 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,180 KB
testcase_01 AC 123 ms
41,204 KB
testcase_02 AC 117 ms
41,120 KB
testcase_03 AC 109 ms
41,260 KB
testcase_04 AC 119 ms
41,512 KB
testcase_05 AC 122 ms
41,172 KB
testcase_06 AC 124 ms
40,928 KB
testcase_07 AC 122 ms
41,320 KB
testcase_08 AC 121 ms
41,280 KB
testcase_09 AC 123 ms
41,380 KB
testcase_10 AC 111 ms
41,256 KB
testcase_11 AC 124 ms
41,032 KB
testcase_12 AC 120 ms
41,240 KB
testcase_13 AC 117 ms
39,888 KB
testcase_14 AC 121 ms
41,036 KB
testcase_15 AC 113 ms
40,316 KB
testcase_16 AC 121 ms
41,584 KB
testcase_17 AC 114 ms
39,932 KB
testcase_18 AC 121 ms
41,248 KB
testcase_19 AC 125 ms
41,288 KB
testcase_20 AC 125 ms
40,952 KB
testcase_21 AC 124 ms
41,088 KB
testcase_22 AC 123 ms
41,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no358;

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();
		if (isKadomatsuSequence(a, b, c)) {
			System.out.println("INF");
		}else{
			int max = Math.max(a, Math.max(b, c));
			int count = 0;
			for(int p=1;p<=max;p++) {
				if (isKadomatsuSequence(a % p, b % p, c % p)) {
//					System.out.println(p);
					count++;
				}
			}
			System.out.println(count);
		}
	}
	public static boolean isKadomatsuSequence(long a,long b,long c) {
		if (a == b || b == c || a == c) {
			return false;
		}
		return b < a && b < c || b > a && b > c;
	}
}
0