結果

問題 No.2343 (l+r)/2
ユーザー yosupotyosupot
提出日時 2023-07-01 02:50:54
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 9,551 ms
コンパイル使用メモリ 299,092 KB
実行使用メモリ 5,480 KB
最終ジャッジ日時 2024-07-07 13:59:02
合計ジャッジ時間 10,806 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 303 ms
5,248 KB
testcase_02 AC 5 ms
5,376 KB
testcase_03 AC 95 ms
5,376 KB
testcase_04 AC 53 ms
5,376 KB
testcase_05 AC 21 ms
5,376 KB
testcase_06 AC 18 ms
5,376 KB
testcase_07 AC 12 ms
5,376 KB
testcase_08 AC 15 ms
5,376 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 12 ms
5,376 KB
testcase_12 AC 14 ms
5,376 KB
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 17 ms
5,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.string, std.regex, std.conv;
 

void solve() {
    int n = to!int(readln.strip);
    string s = readln.strip.split.join;

    auto r = regex(r"^((0+1+|1+0+)*)((0+1+0+1+0+1+0+1+0+)|(1+0+1+0+1+0+1+0+1+)|)$");
 
    if (s.matchFirst(r)) {
        writeln("Yes");
    } else {
        writeln("No");
    }    
}

void main() {
    int t = to!int(readln.strip);
    foreach (i; 0..t) {
        solve();
    } 
}
0