結果

問題 No.358 も~っと!門松列
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 14:40:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 729 bytes
コンパイル時間 3,671 ms
コンパイル使用メモリ 77,896 KB
実行使用メモリ 41,632 KB
最終ジャッジ日時 2024-11-15 18:39:40
合計ジャッジ時間 7,835 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,452 KB
testcase_01 AC 134 ms
40,968 KB
testcase_02 AC 119 ms
40,212 KB
testcase_03 AC 125 ms
41,256 KB
testcase_04 AC 134 ms
40,880 KB
testcase_05 AC 135 ms
41,592 KB
testcase_06 AC 134 ms
41,196 KB
testcase_07 AC 132 ms
40,988 KB
testcase_08 AC 135 ms
41,200 KB
testcase_09 AC 135 ms
40,976 KB
testcase_10 AC 136 ms
41,112 KB
testcase_11 AC 138 ms
41,288 KB
testcase_12 AC 134 ms
41,196 KB
testcase_13 AC 136 ms
41,008 KB
testcase_14 AC 137 ms
41,196 KB
testcase_15 AC 135 ms
41,332 KB
testcase_16 AC 135 ms
41,408 KB
testcase_17 AC 122 ms
41,440 KB
testcase_18 AC 134 ms
41,392 KB
testcase_19 AC 132 ms
41,632 KB
testcase_20 AC 136 ms
41,308 KB
testcase_21 AC 134 ms
41,572 KB
testcase_22 AC 122 ms
40,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int a, b, c, cnt = 0;
		a = sc.nextInt();
		b = sc.nextInt();
		c = sc.nextInt();
		if (a == b || b == c || c == a) {
			System.out.println(0);
			return;
		}
		if (Math.max(Math.max(a, b), c) == b || Math.min(Math.min(a, b), c) == b) {
			System.out.println("INF");
			return;
		}
		int ta, tb, tc;
		for (int i = 3, j = Math.max(a, c); i <= j; i++) {
			ta = a % i;
			tb = b % i;
			tc = c % i;
			if (ta == tb || tb == tc || tc == ta) {
				continue;
			}
			if (Math.max(Math.max(ta, tb), tc) == tb || Math.min(Math.min(ta, tb), tc) == tb) {
				cnt++;
			}
		}
		System.out.println(cnt);
	}
}
0