結果

問題 No.358 も~っと!門松列
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-04 13:59:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 1,000 ms
コード長 1,204 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 77,096 KB
実行使用メモリ 50,376 KB
最終ジャッジ日時 2024-09-14 07:05:43
合計ジャッジ時間 4,379 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,256 KB
testcase_01 AC 53 ms
50,192 KB
testcase_02 AC 53 ms
49,904 KB
testcase_03 AC 54 ms
50,256 KB
testcase_04 AC 54 ms
50,232 KB
testcase_05 AC 54 ms
50,224 KB
testcase_06 AC 54 ms
50,184 KB
testcase_07 AC 53 ms
49,856 KB
testcase_08 AC 54 ms
50,376 KB
testcase_09 AC 51 ms
36,992 KB
testcase_10 AC 52 ms
36,740 KB
testcase_11 AC 53 ms
37,016 KB
testcase_12 AC 51 ms
36,688 KB
testcase_13 AC 51 ms
36,812 KB
testcase_14 AC 54 ms
36,944 KB
testcase_15 AC 51 ms
36,532 KB
testcase_16 AC 52 ms
36,524 KB
testcase_17 AC 51 ms
36,524 KB
testcase_18 AC 52 ms
36,760 KB
testcase_19 AC 53 ms
36,860 KB
testcase_20 AC 54 ms
37,036 KB
testcase_21 AC 52 ms
37,008 KB
testcase_22 AC 53 ms
36,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        int A1 = Integer.parseInt(inputs[0]);
        int A2 = Integer.parseInt(inputs[1]);
        int A3 = Integer.parseInt(inputs[2]);
        int max = Math.max(Math.max(A1, A2), A3);
        int counter = 0;
        if (isKadomatu(A1, A2, A3)) {
            System.out.println("INF");
        } else {
            for (int i = 1; i <= max; i++) {
                if (isKadomatu(A1 % i, A2 % i, A3 % i)) {
                    counter += 1;
                }
            }
            System.out.println(counter);
        }

    }

    private static boolean isKadomatu(int a, int b, int c) {
        if (a == b || b == c || c == a) {
            return false;
        }

        if (b < a && b < c) {
            return true;
        } else if (a < b && c < b) {
            return true;
        } else {
            return false;
        }
    }
}

0