結果

問題 No.495 (^^*) Easy
ユーザー jimanojimano
提出日時 2018-01-27 16:43:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 709 bytes
コンパイル時間 2,960 ms
コンパイル使用メモリ 76,384 KB
実行使用メモリ 55,636 KB
最終ジャッジ日時 2023-08-28 09:55:31
合計ジャッジ時間 4,173 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
51,716 KB
testcase_01 AC 68 ms
50,580 KB
testcase_02 AC 79 ms
51,916 KB
testcase_03 AC 69 ms
51,992 KB
testcase_04 AC 79 ms
51,592 KB
testcase_05 AC 98 ms
53,544 KB
testcase_06 AC 125 ms
55,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.wip;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No0495_2 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String input = br.readLine();
			int cntLeft = 0;
			int cntRight = 0;
			String right = "(*^^)";
			String left = "(^^*)";

			for (int i = 0; i < input.length()- 5; i++) {
				if (input.substring(i, i + 5).equals(right)) {
					cntRight++;
				} else if (input.substring(i, i + 5).equals(left)) {
					cntLeft++;
				}
			}

			System.out.println(cntLeft + " " + cntRight);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0