結果

問題 No.358 も~っと!門松列
ユーザー tentententen
提出日時 2021-02-10 08:44:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 105 ms / 1,000 ms
コード長 695 bytes
コンパイル時間 1,719 ms
コンパイル使用メモリ 77,348 KB
実行使用メモリ 41,224 KB
最終ジャッジ日時 2024-07-07 18:40:27
合計ジャッジ時間 4,924 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
41,224 KB
testcase_01 AC 105 ms
40,880 KB
testcase_02 AC 103 ms
40,996 KB
testcase_03 AC 105 ms
41,144 KB
testcase_04 AC 104 ms
40,976 KB
testcase_05 AC 100 ms
41,092 KB
testcase_06 AC 94 ms
40,208 KB
testcase_07 AC 93 ms
39,944 KB
testcase_08 AC 94 ms
40,260 KB
testcase_09 AC 90 ms
39,880 KB
testcase_10 AC 91 ms
40,064 KB
testcase_11 AC 101 ms
39,648 KB
testcase_12 AC 101 ms
40,944 KB
testcase_13 AC 102 ms
41,036 KB
testcase_14 AC 91 ms
40,312 KB
testcase_15 AC 102 ms
41,028 KB
testcase_16 AC 101 ms
40,916 KB
testcase_17 AC 99 ms
41,008 KB
testcase_18 AC 99 ms
41,024 KB
testcase_19 AC 99 ms
40,792 KB
testcase_20 AC 99 ms
40,908 KB
testcase_21 AC 93 ms
39,912 KB
testcase_22 AC 101 ms
40,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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 (isKadomatsu(a, b, c)) {
            System.out.println("INF");
            return;
        }
        int count = 0;
        for (int i = 3; i <= Math.max(a, Math.max(b, c)); i++) {
            if (isKadomatsu(a % i, b % i, c % i)) {
                count++;
            }
        }
        System.out.println(count);
    }
    
    static boolean isKadomatsu(int a, int b, int c) {
        return (a < b && c < b && a != c) || (a > b && c > b && a != c);
    }
}
0