結果

問題 No.457 (^^*)
ユーザー uafr_csuafr_cs
提出日時 2017-11-02 19:25:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 388 ms / 2,000 ms
コード長 1,133 bytes
コンパイル時間 2,675 ms
コンパイル使用メモリ 80,300 KB
実行使用メモリ 42,740 KB
最終ジャッジ日時 2024-11-22 13:47:03
合計ジャッジ時間 7,958 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
42,312 KB
testcase_01 AC 163 ms
42,124 KB
testcase_02 AC 165 ms
42,292 KB
testcase_03 AC 165 ms
42,172 KB
testcase_04 AC 163 ms
42,084 KB
testcase_05 AC 165 ms
42,384 KB
testcase_06 AC 166 ms
42,284 KB
testcase_07 AC 168 ms
42,600 KB
testcase_08 AC 181 ms
42,340 KB
testcase_09 AC 180 ms
42,664 KB
testcase_10 AC 234 ms
42,216 KB
testcase_11 AC 375 ms
42,740 KB
testcase_12 AC 346 ms
42,592 KB
testcase_13 AC 344 ms
42,528 KB
testcase_14 AC 183 ms
42,628 KB
testcase_15 AC 388 ms
42,256 KB
testcase_16 AC 347 ms
42,640 KB
testcase_17 AC 182 ms
42,360 KB
testcase_18 AC 168 ms
42,268 KB
testcase_19 AC 167 ms
42,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final char[] chs = sc.next().toCharArray();
		
		int lefts = 0, rights = 0;
		for(int begin = 0; begin < chs.length; begin++){
			if(chs[begin] != '('){ continue; }
			
			{
				boolean find_left_star = false;
				int hat_count = 0;
				for(int next = begin + 1; next < chs.length; next++){
					if(chs[next] == '^'){
						if(find_left_star){ hat_count++; }
					}else if(chs[next] == '*'){
						find_left_star = true;
					}else if(chs[next] == ')' && hat_count >= 2){
						rights++;
					}
				}
			}
			{
				int hat_count = 0;
				boolean find_right_star = false;
				for(int next = begin + 1; next < chs.length; next++){
					if(chs[next] == '^'){
						hat_count++;
					}else if(chs[next] == '*'){
						if(hat_count >= 2){ find_right_star = true; }
					}else if(chs[next] == ')' && find_right_star){
						lefts++;
					}
				}
			}
			
		}
		
		System.out.println(lefts + " " + rights);
	}
}
0