結果

問題 No.358 も~っと!門松列
ユーザー yagi2yagi2
提出日時 2017-04-17 16:52:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 1,000 ms
コード長 1,023 bytes
コンパイル時間 2,448 ms
コンパイル使用メモリ 79,264 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-07-19 05:29:44
合計ジャッジ時間 6,519 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
40,652 KB
testcase_01 AC 135 ms
41,668 KB
testcase_02 AC 136 ms
41,068 KB
testcase_03 AC 138 ms
41,428 KB
testcase_04 AC 125 ms
40,680 KB
testcase_05 AC 136 ms
41,660 KB
testcase_06 AC 124 ms
40,452 KB
testcase_07 AC 138 ms
41,276 KB
testcase_08 AC 136 ms
41,552 KB
testcase_09 AC 137 ms
41,356 KB
testcase_10 AC 134 ms
41,712 KB
testcase_11 AC 138 ms
41,556 KB
testcase_12 AC 138 ms
41,204 KB
testcase_13 AC 118 ms
40,528 KB
testcase_14 AC 123 ms
40,608 KB
testcase_15 AC 139 ms
41,228 KB
testcase_16 AC 139 ms
41,504 KB
testcase_17 AC 134 ms
41,436 KB
testcase_18 AC 139 ms
41,492 KB
testcase_19 AC 139 ms
41,500 KB
testcase_20 AC 126 ms
40,336 KB
testcase_21 AC 141 ms
41,440 KB
testcase_22 AC 138 ms
41,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.Scanner;

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

        List<Integer> A = new ArrayList<>();
        for (int i = 0; i < 3; i ++) {
            A.add(Integer.parseInt(sc.next()));
        }

        int cnt = 0;
        for (int i = 3; i <= 2000; i ++) {
            List<Integer> T = new ArrayList<>();
            T.add(A.get(0) % i);
            T.add(A.get(1) % i);
            T.add(A.get(2) % i);

            if (isKadomatsu(T)) cnt++;
        }

        if (cnt >= 1000) {
            System.out.println("INF");
        } else {
            System.out.println(cnt);
        }
    }

    private static boolean isKadomatsu(List<Integer> A) {
        List<Integer> T = new ArrayList<>(A);

        return ((!Objects.equals(T.get(0), T.get(2)))&&((T.get(1) < T.get(0) && T.get(1) < T.get(2)) || (T.get(1) > T.get(0) && T.get(1) > T.get(2))));
    }
}
0