結果

問題 No.1694 ZerOne
ユーザー 👑 KazunKazun
提出日時 2021-10-01 22:03:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 532 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 77,148 KB
最終ジャッジ日時 2024-07-19 11:22:28
合計ジャッジ時間 3,264 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 37 ms
52,220 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 36 ms
51,968 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 36 ms
51,712 KB
testcase_12 AC 36 ms
52,096 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 34 ms
51,712 KB
testcase_19 AC 35 ms
52,096 KB
testcase_20 AC 66 ms
72,448 KB
testcase_21 AC 69 ms
72,704 KB
testcase_22 AC 79 ms
76,124 KB
testcase_23 AC 78 ms
76,384 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 80 ms
76,032 KB
testcase_27 AC 81 ms
76,032 KB
testcase_28 AC 74 ms
74,964 KB
testcase_29 AC 71 ms
74,240 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def change(S,a,b,c,d):
    return S[:a]+S[c:d+1]+S[b+1:c]+S[a:b+1]+S[d+1:]

S=input()
N=len(S)

E={S}

for tl in range(N):
    t0=t1=0
    for tr in range(tl,N):
        if S[tr]=="0":
            t0+=1
        else:
            t1+=1

        for ul in range(tr+1,N):
            u0=u1=0
            for ur in range(ul,N):
                if S[ur]=="0":
                    u0+=1
                else:
                    u1+=1

                if t0==u0 and t1==u1:
                    E.add(change(S,tl,tr,ul,ur))

print(len(E))
0