結果

問題 No.2343 (l+r)/2
ユーザー kobaryo222kobaryo222
提出日時 2023-06-09 21:28:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 245 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 19,316 KB
最終ジャッジ日時 2025-01-02 02:18:50
合計ジャッジ時間 2,105 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,240 KB
testcase_01 AC 453 ms
10,368 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 47 ms
19,316 KB
testcase_05 AC 39 ms
13,824 KB
testcase_06 AC 38 ms
12,928 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 35 ms
10,624 KB
testcase_11 AC 40 ms
11,008 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
11,264 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