結果

問題 No.495 (^^*) Easy
ユーザー tentententen
提出日時 2020-11-12 08:19:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 2,023 ms
コンパイル使用メモリ 76,916 KB
実行使用メモリ 44,368 KB
最終ジャッジ日時 2024-07-22 19:00:10
合計ジャッジ時間 3,573 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
42,440 KB
testcase_01 AC 124 ms
42,356 KB
testcase_02 AC 123 ms
42,092 KB
testcase_03 AC 128 ms
42,484 KB
testcase_04 AC 112 ms
41,904 KB
testcase_05 AC 147 ms
42,408 KB
testcase_06 AC 188 ms
44,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int left = 0;
        int right = 0;
        char[] arr = sc.next().toCharArray();
        for (int i = 0; i < arr.length; i++) {
            if (arr[i] == '*') {
                if (arr[i - 1] == '^') {
                    left++;
                } else {
                    right++;
                }
            }
        }
        System.out.println(left + " " + right);
    }
}
0