結果

問題 No.495 (^^*) Easy
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 16:59:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 286 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 76,148 KB
実行使用メモリ 55,500 KB
最終ジャッジ日時 2024-09-13 10:26:12
合計ジャッジ時間 4,135 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
54,792 KB
testcase_01 AC 151 ms
54,712 KB
testcase_02 AC 151 ms
54,864 KB
testcase_03 AC 150 ms
54,984 KB
testcase_04 AC 152 ms
54,744 KB
testcase_05 AC 168 ms
54,828 KB
testcase_06 AC 239 ms
55,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		String s = sc.next();
		int L = (s.replace("(*^^)","").length()-1) / 5;
		int R = (s.replace("(^^*)","").length()-1) / 5;
		System.out.println(L+" "+R);
		
	}
}
0