結果
問題 | No.2924 <===Super Spaceship String===> |
ユーザー | ryuuichi |
提出日時 | 2024-10-12 16:55:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,235 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 64,700 KB |
最終ジャッジ日時 | 2024-10-12 16:56:02 |
合計ジャッジ時間 | 4,553 ms |
ジャッジサーバーID (参考情報) |
judge / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,624 KB |
testcase_01 | AC | 25 ms
10,624 KB |
testcase_02 | AC | 27 ms
10,752 KB |
testcase_03 | AC | 27 ms
10,624 KB |
testcase_04 | AC | 26 ms
10,624 KB |
testcase_05 | WA | - |
testcase_06 | AC | 26 ms
10,752 KB |
testcase_07 | AC | 504 ms
58,392 KB |
testcase_08 | AC | 493 ms
58,396 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
S=list(input()) #ラングトン符号化→スタック s=[] N=len(S) for i in range(N): s.append([S[i],1]) ss=[s[0]] for i in range(1,N): if ss[-1][0]==s[i][0]: ss[-1][1]+=s[i][1] else: ss.append(s[i]) mai=0 stac=[] for i in range(len(ss)): if len(stac)>=2: if stac[-1][0]==stac[-2][0]: stac[-1][1]+=stac[-2][1] if len(stac)>=3: if stac[-3][0]=="<" and stac[-2][0]=="=" and stac[-1][0]==">": mai+=stac[-2][1]+2 tmp=[stac[-3][1]-1,stac[-1][1]-1] for _ in range(3): stac.pop() if tmp[0]: stac.append(["<",tmp[0]]) if tmp[1]: stac.append([">",tmp[1]]) stac.append(ss[i]) if len(stac)>=2: if stac[-1][0]==stac[-2][0]: stac[-1][1]+=stac[-2][1] if len(stac)>=3: if stac[-3][0]=="<" and stac[-2][0]=="=" and stac[-1][0]==">": mai+=stac[-2][1]+2 tmp=[stac[-3][1]-1,stac[-1][1]-1] for _ in range(3): stac.pop() if tmp[0]: stac.append(["<",tmp[0]]) if tmp[1]: stac.append([">",tmp[1]]) print(N-mai)