結果
問題 | No.457 (^^*) |
ユーザー | kohaku_kohaku |
提出日時 | 2016-12-08 03:39:17 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,802 bytes |
コンパイル時間 | 3,161 ms |
コンパイル使用メモリ | 78,792 KB |
実行使用メモリ | 63,792 KB |
最終ジャッジ日時 | 2024-05-06 02:19:44 |
合計ジャッジ時間 | 8,340 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 115 ms
63,792 KB |
testcase_01 | AC | 124 ms
42,020 KB |
testcase_02 | AC | 125 ms
42,492 KB |
testcase_03 | AC | 117 ms
42,020 KB |
testcase_04 | AC | 129 ms
42,100 KB |
testcase_05 | AC | 135 ms
42,492 KB |
testcase_06 | AC | 118 ms
41,812 KB |
testcase_07 | AC | 134 ms
42,464 KB |
testcase_08 | AC | 178 ms
43,616 KB |
testcase_09 | AC | 208 ms
44,008 KB |
testcase_10 | AC | 235 ms
42,628 KB |
testcase_11 | AC | 388 ms
42,284 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
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); } }