結果

問題 No.358 も~っと!門松列
ユーザー jp_stejp_ste
提出日時 2016-05-05 17:45:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 110 ms / 1,000 ms
コード長 1,033 bytes
コンパイル時間 1,928 ms
コンパイル使用メモリ 74,504 KB
実行使用メモリ 41,284 KB
最終ジャッジ日時 2024-10-05 09:52:38
合計ジャッジ時間 4,973 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
40,704 KB
testcase_01 AC 101 ms
39,916 KB
testcase_02 AC 100 ms
40,292 KB
testcase_03 AC 94 ms
39,332 KB
testcase_04 AC 102 ms
40,104 KB
testcase_05 AC 103 ms
39,896 KB
testcase_06 AC 98 ms
39,880 KB
testcase_07 AC 108 ms
41,284 KB
testcase_08 AC 107 ms
41,144 KB
testcase_09 AC 105 ms
40,940 KB
testcase_10 AC 104 ms
40,548 KB
testcase_11 AC 107 ms
41,172 KB
testcase_12 AC 99 ms
39,964 KB
testcase_13 AC 106 ms
41,264 KB
testcase_14 AC 102 ms
40,092 KB
testcase_15 AC 94 ms
40,064 KB
testcase_16 AC 98 ms
40,028 KB
testcase_17 AC 105 ms
40,684 KB
testcase_18 AC 107 ms
41,068 KB
testcase_19 AC 106 ms
40,872 KB
testcase_20 AC 99 ms
39,904 KB
testcase_21 AC 109 ms
40,436 KB
testcase_22 AC 110 ms
40,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int a1 = scan.nextInt();
            int a2 = scan.nextInt();
            int a3 = scan.nextInt();
            if(isKadomathu(a1, a2, a3)) {
                System.out.println("INF");
            } else {
                
                int max = a1;
                if(max < a2) max = a2;
                if(max < a3) max = a3;
                
                int ans = 0;
                for(int p=2; p<=max; p++) {
                    if(isKadomathu(a1%p, a2%p, a3%p)) {
                        ans++;
                    }
                }
                System.out.println(ans);
            }
        }
    }
    
    static boolean isKadomathu(int v1, int v2, int v3) {
        if(v1 != v2 && v1 != v3 && v2 != v3) {
            if((v2 > v1 && v2 > v3) || (v2 < v1 && v2 < v3)) {
                return true;
            }   
        }
        return false;
    }
}
0