結果

問題 No.2924 <===Super Spaceship String===>
ユーザー viral8viral8
提出日時 2024-10-15 21:33:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 884 bytes
コンパイル時間 3,708 ms
コンパイル使用メモリ 85,692 KB
実行使用メモリ 61,972 KB
最終ジャッジ日時 2024-10-15 21:34:06
合計ジャッジ時間 6,672 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,892 KB
testcase_01 AC 129 ms
53,868 KB
testcase_02 AC 130 ms
54,152 KB
testcase_03 AC 130 ms
54,136 KB
testcase_04 AC 130 ms
53,908 KB
testcase_05 AC 130 ms
53,612 KB
testcase_06 AC 131 ms
53,824 KB
testcase_07 AC 269 ms
56,996 KB
testcase_08 AC 271 ms
56,716 KB
testcase_09 AC 302 ms
56,816 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 301 ms
57,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayDeque;
class Main{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		String S = sc.next();
		int[] imos = new int[S.length()+1];
		ArrayDeque<Integer> deq = new ArrayDeque<>();
		ArrayDeque<Integer> subDeq = new ArrayDeque<>();
		int sub = 0;
		for(int i=S.length()-1;i>=0;i--){
			if(S.charAt(i)=='<'){
				Integer index1 = deq.peekLast();
				if(index1!=null&&i+1+sub<index1){
					deq.removeLast();
					imos[i]++;
					imos[index1+1]--;
					sub = index1-i+1;
				}
				else{
					deq = new ArrayDeque<>();
					subDeq = new ArrayDeque<>();
					sub = 0;
				}
			}
			if(S.charAt(i)=='>'){
				deq.addLast(i);
				subDeq.addLast(sub);
				sub = 0;
			}
		}
		int ans = 0;
		for(int i=0;i<S.length();i++){
			imos[i+1] += imos[i];
			ans += Math.max(0,1-imos[i]);
		}
		System.out.println(ans);
	}
}
0