結果

問題 No.2924 <===Super Spaceship String===>
ユーザー tentententen
提出日時 2024-10-21 10:33:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,781 bytes
コンパイル時間 2,427 ms
コンパイル使用メモリ 79,500 KB
実行使用メモリ 58,144 KB
最終ジャッジ日時 2024-10-21 10:33:48
合計ジャッジ時間 4,942 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
49,992 KB
testcase_01 AC 49 ms
50,460 KB
testcase_02 AC 48 ms
50,464 KB
testcase_03 AC 49 ms
50,464 KB
testcase_04 AC 49 ms
50,312 KB
testcase_05 WA -
testcase_06 AC 49 ms
50,420 KB
testcase_07 AC 181 ms
58,000 KB
testcase_08 AC 167 ms
58,144 KB
testcase_09 AC 181 ms
55,428 KB
testcase_10 WA -
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 189 ms
55,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 == '<') {
                            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();
        }
    }
    
}


0