結果
| 問題 |
No.2924 <===Super Spaceship String===>
|
| コンテスト | |
| ユーザー |
tenten
|
| 提出日時 | 2024-10-21 10:34:18 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 208 ms / 2,000 ms |
| コード長 | 1,818 bytes |
| コンパイル時間 | 2,494 ms |
| コンパイル使用メモリ | 78,900 KB |
| 実行使用メモリ | 57,956 KB |
| 最終ジャッジ日時 | 2024-10-21 10:34:23 |
| 合計ジャッジ時間 | 4,912 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 12 |
ソースコード
import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;
public class Main {
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner();
int count = 0;
Deque<Character> stack = new ArrayDeque<>();
for (char c : sc.next().toCharArray()) {
if (c == '<') {
stack.push(c);
count++;
} else if (c == '>') {
if (stack.size() > 0 && stack.peek() == '=' && count > 0) {
while (true) {
char x = stack.pop();
if (x == '<') {
count--;
break;
}
}
} else {
stack.push(c);
count = 0;
}
} else {
stack.push(c);
}
}
System.out.println(stack.size());
}
}
class Scanner {
BufferedReader br;
StringTokenizer st = new StringTokenizer("");
public Scanner() {
try {
br = new BufferedReader(new InputStreamReader(System.in));
} catch (Exception e) {
}
}
public int nextInt() {
return Integer.parseInt(next());
}
public long nextLong() {
return Long.parseLong(next());
}
public double nextDouble() {
return Double.parseDouble(next());
}
public String next() {
try {
while (!st.hasMoreTokens()) {
st = new StringTokenizer(br.readLine());
}
} catch (Exception e) {
e.printStackTrace();
} finally {
return st.nextToken();
}
}
}
tenten