結果
問題 | No.790 ちきんの括弧並べ |
ユーザー | 大橋佐和 |
提出日時 | 2022-05-06 19:19:44 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 363 bytes |
コンパイル時間 | 151 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 81,280 KB |
最終ジャッジ日時 | 2024-07-05 20:19:40 |
合計ジャッジ時間 | 4,425 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
57,088 KB |
testcase_01 | AC | 40 ms
51,712 KB |
testcase_02 | AC | 41 ms
52,480 KB |
testcase_03 | AC | 53 ms
62,720 KB |
testcase_04 | AC | 61 ms
67,072 KB |
testcase_05 | AC | 77 ms
75,904 KB |
testcase_06 | AC | 127 ms
75,648 KB |
testcase_07 | AC | 299 ms
75,648 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
n = int(input()) a = 0 for i in range(1 << 2 * n): if not i & 1: continue if i >> 2 * n & 1: continue if bin(i).count("1") != n: continue s = 0 for j in range(2 * n): if i >> j & 1: s += 1 else: s -= 1 if s < 0: break if s == 0: a += 1 print(a)