結果
問題 | No.457 (^^*) |
ユーザー | fal_rnd |
提出日時 | 2016-12-09 17:38:18 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 577 ms / 2,000 ms |
コード長 | 1,338 bytes |
コンパイル時間 | 2,565 ms |
コンパイル使用メモリ | 79,184 KB |
実行使用メモリ | 44,248 KB |
最終ジャッジ日時 | 2024-11-28 16:27:34 |
合計ジャッジ時間 | 7,949 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 127 ms
41,320 KB |
testcase_01 | AC | 126 ms
41,396 KB |
testcase_02 | AC | 125 ms
41,044 KB |
testcase_03 | AC | 126 ms
41,284 KB |
testcase_04 | AC | 125 ms
41,152 KB |
testcase_05 | AC | 113 ms
39,988 KB |
testcase_06 | AC | 129 ms
41,540 KB |
testcase_07 | AC | 140 ms
41,312 KB |
testcase_08 | AC | 154 ms
42,212 KB |
testcase_09 | AC | 189 ms
42,320 KB |
testcase_10 | AC | 255 ms
42,968 KB |
testcase_11 | AC | 276 ms
43,228 KB |
testcase_12 | AC | 566 ms
43,572 KB |
testcase_13 | AC | 576 ms
44,248 KB |
testcase_14 | AC | 155 ms
42,068 KB |
testcase_15 | AC | 522 ms
43,464 KB |
testcase_16 | AC | 577 ms
43,940 KB |
testcase_17 | AC | 136 ms
41,112 KB |
testcase_18 | AC | 121 ms
41,284 KB |
testcase_19 | AC | 109 ms
39,972 KB |
ソースコード
package src; import java.util.*; class C{ static Scanner s = new Scanner(System.in); static int resL=0,resR=0,availableEdgeL=0,availableEdgeR=0; public static void main(String[] args) { char[] in = s.next().toCharArray(); ArrayList<Checker> L=new ArrayList<>(),R=new ArrayList<>(); for(int i=0;i<in.length;i++) { char c=in[i]; if(c=='(') { L.add(new Checker()); R.add(new Checker()); } ListIterator<Checker> it = L.listIterator(); while(it.hasNext()) { checkL(it.next(), c); } it = R.listIterator(); while(it.hasNext()) { checkR(it.next(), c); } // System.out.printf("%d %d\n",resL,resR); } System.out.printf("%d %d\n",resL,resR); } static void checkR(Checker checker,char c){ switch(checker.flag) { case 0: if(c=='(') checker.flag++; break; case 1: if(c=='*') checker.flag++; break; case 2: case 3: if(c=='^') checker.flag++; break; case 4: if(c==')') resR++; break; } } static void checkL(Checker checker,char c){ switch(checker.flag) { case 0: if(c=='(') checker.flag++; break; case 1: case 2: if(c=='^') checker.flag++; break; case 3: if(c=='*') checker.flag++; break; case 4: if(c==')') resL++; break; } } } class Checker{ int flag=0; Checker() { } }