結果

問題 No.358 も~っと!門松列
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-25 01:49:33
言語 Java
(openjdk 23)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 604 bytes
コンパイル時間 2,503 ms
コンパイル使用メモリ 74,828 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-11-06 20:48:47
合計ジャッジ時間 6,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,156 KB
testcase_01 AC 137 ms
54,112 KB
testcase_02 AC 136 ms
54,164 KB
testcase_03 AC 136 ms
54,080 KB
testcase_04 AC 138 ms
54,092 KB
testcase_05 AC 137 ms
54,036 KB
testcase_06 AC 137 ms
54,176 KB
testcase_07 AC 136 ms
54,220 KB
testcase_08 AC 136 ms
53,996 KB
testcase_09 AC 135 ms
54,060 KB
testcase_10 AC 137 ms
54,216 KB
testcase_11 AC 138 ms
53,796 KB
testcase_12 AC 131 ms
54,144 KB
testcase_13 AC 137 ms
54,024 KB
testcase_14 AC 136 ms
54,048 KB
testcase_15 AC 133 ms
54,112 KB
testcase_16 AC 132 ms
54,044 KB
testcase_17 AC 140 ms
54,096 KB
testcase_18 AC 134 ms
54,308 KB
testcase_19 AC 132 ms
53,892 KB
testcase_20 AC 135 ms
54,136 KB
testcase_21 AC 134 ms
54,164 KB
testcase_22 AC 139 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int a = sc.nextInt();
		int b = sc.nextInt();
		int c = sc.nextInt();
		if (IsKadomatsu(a,b,c)==true) {System.out.println("INF");}
		else {
			int total = 0;
			int max = Math.max(a,Math.max(b,c));
			for (int i=1; i<=max; i++) {
				if (IsKadomatsu(a%i,b%i,c%i)==true) {total++;}
			}
			System.out.println(total);
		}
	}

	static boolean IsKadomatsu (int a, int b, int c) {
		if (a!=b && b!=c && a!=c) {
			if (a<b&&b>c || a>b&&b<c) {return true;}
		}
		return false;
	}
}
0