結果
問題 | No.2924 <===Super Spaceship String===> |
ユーザー | viral8 |
提出日時 | 2024-10-15 21:08:49 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 718 bytes |
コンパイル時間 | 2,531 ms |
コンパイル使用メモリ | 78,160 KB |
実行使用メモリ | 61,276 KB |
最終ジャッジ日時 | 2024-10-15 21:08:57 |
合計ジャッジ時間 | 6,999 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 132 ms
54,024 KB |
testcase_01 | AC | 132 ms
53,688 KB |
testcase_02 | AC | 135 ms
54,184 KB |
testcase_03 | AC | 147 ms
54,288 KB |
testcase_04 | AC | 135 ms
53,864 KB |
testcase_05 | AC | 134 ms
54,032 KB |
testcase_06 | AC | 131 ms
54,124 KB |
testcase_07 | AC | 272 ms
57,280 KB |
testcase_08 | AC | 272 ms
57,000 KB |
testcase_09 | AC | 301 ms
56,984 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
ソースコード
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]; int bef = S.length(); ArrayDeque<Integer> deq = new ArrayDeque<>(); for(int i=S.length()-1;i>=0;i--){ if(S.charAt(i)=='<'){ Integer index1 = deq.peekLast(); if(index1!=null&&i+1<index1&&index1<bef){ deq.removeLast(); imos[i]++; imos[index1+1]--; } else{ bef = i; } } if(S.charAt(i)=='>') deq.addLast(i); } 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); } }