結果

問題 No.495 (^^*) Easy
ユーザー htensaihtensai
提出日時 2019-11-17 21:41:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 216 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 2,454 ms
コンパイル使用メモリ 85,272 KB
実行使用メモリ 55,760 KB
最終ジャッジ日時 2024-09-25 06:11:09
合計ジャッジ時間 4,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
54,964 KB
testcase_01 AC 150 ms
54,904 KB
testcase_02 AC 150 ms
54,696 KB
testcase_03 AC 139 ms
54,556 KB
testcase_04 AC 152 ms
55,080 KB
testcase_05 AC 164 ms
55,112 KB
testcase_06 AC 216 ms
55,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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