結果

問題 No.495 (^^*) Easy
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-12 21:04:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 385 bytes
コンパイル時間 2,284 ms
コンパイル使用メモリ 76,916 KB
実行使用メモリ 44,796 KB
最終ジャッジ日時 2024-11-17 10:54:13
合計ジャッジ時間 4,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
42,192 KB
testcase_01 AC 142 ms
41,760 KB
testcase_02 AC 158 ms
42,020 KB
testcase_03 AC 155 ms
42,152 KB
testcase_04 AC 156 ms
42,412 KB
testcase_05 AC 171 ms
42,300 KB
testcase_06 AC 234 ms
44,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int n = s.length();
		int left = 0; int right = 0;
		for(int i = 0 ; i < n - 5; i += 5) {
			if(s.substring(i, i + 5).equals("(^^*)")) {
				left++;
			} else {
				right++;
			}
		}
		System.out.println(left + " " + right);
	}
}
0