結果
問題 | No.2924 <===Super Spaceship String===> |
ユーザー | vwxyz |
提出日時 | 2024-10-12 14:46:25 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 183 ms / 2,000 ms |
コード長 | 648 bytes |
コンパイル時間 | 257 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 126,916 KB |
最終ジャッジ日時 | 2024-10-16 17:53:14 |
合計ジャッジ時間 | 1,841 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
51,840 KB |
testcase_01 | AC | 38 ms
51,584 KB |
testcase_02 | AC | 37 ms
51,712 KB |
testcase_03 | AC | 37 ms
52,096 KB |
testcase_04 | AC | 37 ms
51,840 KB |
testcase_05 | AC | 38 ms
52,096 KB |
testcase_06 | AC | 36 ms
52,096 KB |
testcase_07 | AC | 70 ms
75,520 KB |
testcase_08 | AC | 64 ms
75,776 KB |
testcase_09 | AC | 80 ms
76,032 KB |
testcase_10 | AC | 183 ms
126,916 KB |
testcase_11 | AC | 109 ms
85,172 KB |
testcase_12 | AC | 82 ms
76,312 KB |
testcase_13 | AC | 162 ms
124,728 KB |
ソースコード
def Run_Length(lst): run_length=[] if lst: prev=lst[0] cnt=1 for x in lst[1:]: if x==prev: cnt+=1 else: run_length.append((prev,cnt)) prev=x cnt=1 run_length.append((prev,cnt)) return run_length S=input() queue=[] for s in S: if queue and queue[-1][0]=="=" and s=="=": queue[-1][1]+=1 else: queue.append([s,1]) if len(queue)>=3 and (queue[-3][0],queue[-2][0],queue[-1][0])==("<","=",">"): queue.pop() queue.pop() queue.pop() ans=sum(c for s,c in queue) print(ans)