結果

問題 No.457 (^^*)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-08 03:39:17
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 1,802 bytes
コンパイル時間 2,000 ms
コンパイル使用メモリ 79,000 KB
実行使用メモリ 84,368 KB
最終ジャッジ日時 2024-11-28 04:30:26
合計ジャッジ時間 17,758 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
47,296 KB
testcase_01 AC 143 ms
83,276 KB
testcase_02 AC 134 ms
47,324 KB
testcase_03 AC 122 ms
83,480 KB
testcase_04 AC 124 ms
46,940 KB
testcase_05 AC 119 ms
84,368 KB
testcase_06 AC 139 ms
47,364 KB
testcase_07 AC 121 ms
41,012 KB
testcase_08 AC 142 ms
42,340 KB
testcase_09 AC 209 ms
42,364 KB
testcase_10 AC 240 ms
42,868 KB
testcase_11 AC 376 ms
42,376 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 290 ms
42,480 KB
testcase_15 TLE -
testcase_16 AC 348 ms
42,264 KB
testcase_17 TLE -
testcase_18 AC 114 ms
41,636 KB
testcase_19 AC 135 ms
83,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        int L=0;
        int R=0;
        int length=S.length();
        for(int i=0; i<length; i++){
            if(S.charAt(i)=='('){
                for(int j=i+4; j<length; j++){
                    if(S.charAt(j)==')'){
                        int cL=0;
                        int fL=0;
                        for(int k=i+1; k<j; k++){
                            if(S.charAt(k)=='^'){cL++;}
                            if(cL==2){
                                for(int m=k; m<j; m++){
                                    if(S.charAt(m)=='*'){
                                        L++;
                                        fL=1;
                                        break;
                                    }
                                }
                            }
                            if(fL==1){break;}
                        }
                        int cR=0;
                        int fR=0;
                        for(int k=j-1; k>=i+1; k--){
                            if(S.charAt(k)=='^'){cR++;}
                            if(cR==2){
                                for(int m=k; m>=i+1; m--){
                                    if(S.charAt(m)=='*'){
                                        R++;
                                        fR=1;
                                        break;
                                    }
                                }
                            }
                            if(fR==1){break;}
                        }                        
                    }
                }
            }
        }
        System.out.println(L+" "+R);
    }
}
0