結果

問題 No.360 増加門松列
ユーザー htensaihtensai
提出日時 2019-12-26 16:12:21
言語 Java
(openjdk 23)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 1,511 bytes
コンパイル時間 1,794 ms
コンパイル使用メモリ 77,924 KB
実行使用メモリ 42,304 KB
最終ジャッジ日時 2024-10-04 09:55:54
合計ジャッジ時間 5,375 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,536 KB
testcase_01 AC 130 ms
41,120 KB
testcase_02 AC 110 ms
41,096 KB
testcase_03 AC 103 ms
39,996 KB
testcase_04 AC 131 ms
41,412 KB
testcase_05 AC 129 ms
41,236 KB
testcase_06 AC 129 ms
42,192 KB
testcase_07 AC 126 ms
40,808 KB
testcase_08 AC 123 ms
40,924 KB
testcase_09 AC 116 ms
42,272 KB
testcase_10 AC 126 ms
41,676 KB
testcase_11 AC 109 ms
41,264 KB
testcase_12 AC 131 ms
41,208 KB
testcase_13 AC 107 ms
40,340 KB
testcase_14 AC 103 ms
40,036 KB
testcase_15 AC 127 ms
41,208 KB
testcase_16 AC 112 ms
41,292 KB
testcase_17 AC 115 ms
41,524 KB
testcase_18 AC 115 ms
42,304 KB
testcase_19 AC 131 ms
41,980 KB
testcase_20 AC 127 ms
41,212 KB
testcase_21 AC 121 ms
42,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int[] questions;
    static boolean can = false;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = 7;
        questions = new int[n];
        for (int i = 0; i < n; i++) {
            questions[i] = sc.nextInt();
        }
        search(new boolean[n], new ArrayList<Integer>());
        if (can) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
    
    static void search(boolean[] used, ArrayList<Integer> list) {
        if (can) {
            return;
        }
        if (list.size() == 7) {
            for (int i = 0; i < 7 - 2; i++) {
                int a = list.get(i);
                int b = list.get(i + 1);
                int c = list.get(i + 2);
                if (a == b || b == c || c == a) {
                    return;
                }
                if (a >= c) {
                    return;
                }
                if ((b < a && b < c) || (b > a && b > c)) {
                    
                } else {
                    return;
                }
            }
            can = true;
            return;
        }
        for (int i = 0; i < 7; i++) {
            if (!used[i]) {
                used[i] = true;
                list.add(questions[i]);
                search(used, list);
                used[i] = false;
                list.remove(list.size() - 1);
            }
        }
    }
}
0