結果

問題 No.495 (^^*) Easy
ユーザー あsdfあsdf
提出日時 2017-04-01 23:10:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 462 bytes
コンパイル時間 2,358 ms
コンパイル使用メモリ 76,252 KB
実行使用メモリ 42,956 KB
最終ジャッジ日時 2024-07-07 19:16:27
合計ジャッジ時間 3,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
42,156 KB
testcase_01 AC 127 ms
41,964 KB
testcase_02 AC 126 ms
41,640 KB
testcase_03 AC 121 ms
42,028 KB
testcase_04 AC 118 ms
42,036 KB
testcase_05 AC 138 ms
42,268 KB
testcase_06 AC 187 ms
42,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args){
    Scanner cs = new Scanner(System.in);
    String a = cs.next();
    
    int cnt = 0;
    int left = 0;
    int right = 0;

    for(int i = 0;i < a.length();i++){
      if(a.charAt(i) == '*'){
        if(a.charAt(i-1) == '^'){
          left++;
        }else if(a.charAt(i-1) == '('){
          right++;
        }
      }
    }
      System.out.println(left+" "+right);
  }
}
0