結果

問題 No.790 ちきんの括弧並べ
ユーザー neko_the_shadowneko_the_shadow
提出日時 2019-02-23 16:11:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 719 bytes
コンパイル時間 2,890 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-11-30 07:04:22
合計ジャッジ時間 5,252 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,156 KB
testcase_01 AC 101 ms
39,880 KB
testcase_02 AC 112 ms
41,240 KB
testcase_03 AC 113 ms
41,328 KB
testcase_04 AC 105 ms
40,160 KB
testcase_05 AC 125 ms
41,320 KB
testcase_06 AC 126 ms
41,132 KB
testcase_07 AC 125 ms
41,368 KB
testcase_08 AC 174 ms
41,056 KB
testcase_09 AC 364 ms
41,444 KB
testcase_10 AC 116 ms
41,252 KB
testcase_11 AC 113 ms
41,408 KB
testcase_12 AC 132 ms
41,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner stdin = new Scanner(System.in);
        int n = stdin.nextInt();
        int ans = 0;
        loop: for (int bit = 0; bit < (1 << (2 * n)); bit++) {
            if (Integer.bitCount(bit) != n) continue;
            
            int x = 0;
            int y = 0;
            for (int i = 0; i < 2 * n; i++) {
                if ((bit & (1 << i)) == 0) {
                    x++;
                } else {
                    y++;
                }
                
                if (y < x) continue loop;
            }
            
            ans++;
        }
        
        System.out.println(ans);
    }
}
0