結果

問題 No.2343 (l+r)/2
ユーザー kobaryo222kobaryo222
提出日時 2023-06-09 21:28:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 245 bytes
コンパイル時間 83 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,704 KB
最終ジャッジ日時 2024-06-10 12:52:31
合計ジャッジ時間 1,662 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 408 ms
10,880 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 38 ms
19,704 KB
testcase_05 AC 30 ms
14,208 KB
testcase_06 AC 30 ms
13,184 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 33 ms
11,264 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 33 ms
11,520 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.py:8: SyntaxWarning: invalid escape sequence '\Z'
  if re.match('((1+0+)|(0+1+))+\Z', S):

ソースコード

diff #

import re
from sys import stdin

T = int(stdin.readline())
for _ in range(T):
    N = stdin.readline()
    S = stdin.readline().strip().replace(' ', '')
    if re.match('((1+0+)|(0+1+))+\Z', S):
        print('Yes')
    else:
        print('No')
0