結果

問題 No.457 (^^*)
ユーザー YamaKasaYamaKasa
提出日時 2018-09-22 17:12:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 327 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 76,140 KB
実行使用メモリ 55,200 KB
最終ジャッジ日時 2024-07-18 09:00:32
合計ジャッジ時間 6,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,520 KB
testcase_01 AC 139 ms
55,096 KB
testcase_02 AC 135 ms
54,776 KB
testcase_03 AC 134 ms
55,200 KB
testcase_04 AC 129 ms
53,308 KB
testcase_05 AC 130 ms
54,800 KB
testcase_06 AC 135 ms
54,404 KB
testcase_07 AC 141 ms
54,900 KB
testcase_08 AC 148 ms
54,904 KB
testcase_09 AC 149 ms
55,064 KB
testcase_10 AC 174 ms
54,776 KB
testcase_11 AC 253 ms
54,908 KB
testcase_12 AC 290 ms
54,764 KB
testcase_13 AC 322 ms
54,424 KB
testcase_14 AC 150 ms
54,772 KB
testcase_15 AC 296 ms
54,976 KB
testcase_16 AC 327 ms
54,648 KB
testcase_17 AC 151 ms
54,936 KB
testcase_18 AC 125 ms
54,168 KB
testcase_19 AC 138 ms
54,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String S = scan.next();
		scan.close();
		int l = S.length();
		int R = 0;
		int L = 0;
		int t1 = 0;
		int t2 = 0;

		for(int i = 0; i < l; i++) {
			if(S.charAt(i) == '(') {
				t1 = 0;
				t2 = 0;
				for(int j = i + 1; j < l; j++) {
					if(S.charAt(j) == '*') {
						if(t1 == 0) t1++;
						if(t2 == 2) t2++;
					}else if(S.charAt(j) == '^') {
						if(t1 == 1 || t1 == 2) t1++;
						if(t2 == 0 || t2 == 1) t2++;
					}else if(S.charAt(j) == ')') {
						if(t1 == 3) L++;
						if(t2 == 3) R++;
					}
				}
			}
		}
		System.out.println(R +" " + L);
	}
}
0