結果

問題 No.495 (^^*) Easy
ユーザー FVRChanFVRChan
提出日時 2017-10-05 10:19:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 76,944 KB
実行使用メモリ 46,388 KB
最終ジャッジ日時 2024-11-16 20:59:05
合計ジャッジ時間 4,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
45,152 KB
testcase_01 AC 145 ms
41,964 KB
testcase_02 AC 149 ms
42,004 KB
testcase_03 AC 148 ms
42,144 KB
testcase_04 AC 145 ms
42,456 KB
testcase_05 AC 195 ms
43,284 KB
testcase_06 AC 264 ms
46,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		String s[]=sc.nextLine().replaceAll("\\)",")/").split("/");
		String a[]={"(^^*)","(*^^)"};
		int left=0,right=0;
		for(String element:s){
			if(element.equals(a[0])==true){
				left++;
			}else if(element.equals(a[1])==true){
				right++;
			}
		}System.out.println(left+" "+right);
	}
}
0