結果

問題 No.2924 <===Super Spaceship String===>
ユーザー ID 21712ID 21712
提出日時 2024-11-03 14:06:20
言語 Go
(1.22.1)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 510 bytes
コンパイル時間 11,843 ms
コンパイル使用メモリ 224,360 KB
実行使用メモリ 12,176 KB
最終ジャッジ日時 2024-11-03 14:06:37
合計ジャッジ時間 16,972 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 493 ms
7,640 KB
testcase_08 AC 524 ms
7,636 KB
testcase_09 AC 495 ms
7,640 KB
testcase_10 AC 530 ms
12,172 KB
testcase_11 AC 503 ms
7,764 KB
testcase_12 AC 500 ms
7,640 KB
testcase_13 AC 525 ms
12,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"

func main() {
	var s string
	Scan(&s)
	sr:=[]rune{}
	sc:=[]int{}
	for _,r:=range s {
		switch r {
			case '<':
			sr=append(sr,r)
			sc=append(sc,1)
			case '=':
			k:=len(sr)-1
			if k>=0&&sr[k]==r {
				sc[k]++
			} else {
				sr=append(sr,r)
				sc=append(sc,1)
			}
			case '>':
			p:=len(sr)-2
			if p>=0&&sr[p+1]=='='&&sr[p]=='<' {
				sr=sr[:p]
				sc=sc[:p]
			} else {
				sr=append(sr,r)
				sc=append(sc,1)
			}
		}
	}
	a:=0
	for _,c:=range sc {
		a+=c
	}
	Println(a)
}
0