結果

問題 No.358 も~っと!門松列
ユーザー tsunabittsunabit
提出日時 2019-06-02 11:36:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 1,074 bytes
コンパイル時間 4,185 ms
コンパイル使用メモリ 77,948 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-09-17 20:06:51
合計ジャッジ時間 7,548 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,096 KB
testcase_01 AC 115 ms
52,812 KB
testcase_02 AC 131 ms
54,236 KB
testcase_03 AC 132 ms
54,248 KB
testcase_04 AC 132 ms
53,988 KB
testcase_05 AC 132 ms
53,744 KB
testcase_06 AC 131 ms
53,700 KB
testcase_07 AC 131 ms
54,108 KB
testcase_08 AC 132 ms
53,696 KB
testcase_09 AC 131 ms
54,036 KB
testcase_10 AC 131 ms
53,904 KB
testcase_11 AC 131 ms
54,116 KB
testcase_12 AC 131 ms
54,056 KB
testcase_13 AC 130 ms
54,240 KB
testcase_14 AC 117 ms
52,736 KB
testcase_15 AC 133 ms
54,332 KB
testcase_16 AC 132 ms
41,440 KB
testcase_17 AC 131 ms
41,568 KB
testcase_18 AC 130 ms
41,184 KB
testcase_19 AC 128 ms
41,236 KB
testcase_20 AC 130 ms
41,556 KB
testcase_21 AC 127 ms
41,076 KB
testcase_22 AC 118 ms
40,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class No358 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        int a1 = s.nextInt(), a2 = s.nextInt(), a3 = s.nextInt();
        int max = Math.max(Math.max(a1, a2), a3);
        int min = Math.min(Math.min(a1, a2), a3);
        
        if(((max == a2) | (min == a2)) && (a1 != a2 && a1 != a3 && a2 != a3)) {
    		System.out.println("INF");
        }else {
        	int c = 0;
        	for(int i = 2; i <= max; i++) {
        		int temp_max = Math.max(Math.max(a1%i, a2%i), a3%i);
                int temp_min = Math.min(Math.min(a1%i, a2%i), a3%i);
                if((temp_max == a2%i && (a1%i != a2%i && a1%i != a3%i && a2%i != a3%i)) | (temp_min == a2%i && (a1%i != a2%i && a1%i != a3%i && a2%i != a3%i))) {
                	c++;
//                	System.out.println(a1%i + " , " + a2%i + " , " + a3%i);
                }
        	}
        	System.out.println(c);
        }
    }
}
0