結果
問題 | No.790 ちきんの括弧並べ |
ユーザー | pasoconhoshii |
提出日時 | 2019-02-20 22:51:12 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 330 bytes |
コンパイル時間 | 430 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 82,176 KB |
最終ジャッジ日時 | 2024-11-07 21:35:13 |
合計ジャッジ時間 | 7,064 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
58,752 KB |
testcase_01 | AC | 69 ms
62,848 KB |
testcase_02 | AC | 78 ms
70,528 KB |
testcase_03 | AC | 121 ms
78,080 KB |
testcase_04 | AC | 139 ms
76,928 KB |
testcase_05 | AC | 210 ms
77,440 KB |
testcase_06 | AC | 520 ms
77,312 KB |
testcase_07 | AC | 1,775 ms
78,080 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
N = int(input()) from copy import copy from itertools import accumulate ans = 0 for S in range(1<<2*N): b = format(S, 'b').zfill(2*N) b = list(map(int, list(b))) b = list(map(lambda x: x if x == 1 else -1, b)) ac = list(accumulate(b)) if all(x >= 0 for x in ac) and ac[-1] == 0: ans += 1 print(ans)