結果

問題 No.2924 <===Super Spaceship String===>
ユーザー viral8viral8
提出日時 2024-10-15 21:24:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 886 bytes
コンパイル時間 5,326 ms
コンパイル使用メモリ 77,764 KB
実行使用メモリ 50,708 KB
最終ジャッジ日時 2024-10-15 21:25:08
合計ジャッジ時間 7,087 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,144 KB
testcase_01 AC 109 ms
41,296 KB
testcase_02 AC 111 ms
40,964 KB
testcase_03 AC 110 ms
41,264 KB
testcase_04 AC 130 ms
40,740 KB
testcase_05 AC 116 ms
40,748 KB
testcase_06 AC 97 ms
40,128 KB
testcase_07 AC 269 ms
47,548 KB
testcase_08 AC 266 ms
47,312 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

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();
					sub += subDeq.size()>0?subDeq.pollLast():0;
					imos[i]++;
					imos[index1+1]--;
					sub += index1-i+1;
				}
				else{
					deq = new ArrayDeque<>();
				}
			}
			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