結果

問題 No.418 ミンミンゼミ
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-12-04 10:00:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 338 bytes
コンパイル時間 1,851 ms
コンパイル使用メモリ 74,784 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-07-16 02:15:11
合計ジャッジ時間 5,790 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,996 KB
testcase_01 AC 105 ms
40,808 KB
testcase_02 AC 113 ms
41,144 KB
testcase_03 AC 121 ms
41,548 KB
testcase_04 AC 119 ms
41,552 KB
testcase_05 AC 118 ms
41,672 KB
testcase_06 AC 115 ms
40,976 KB
testcase_07 AC 116 ms
41,320 KB
testcase_08 AC 120 ms
41,584 KB
testcase_09 AC 121 ms
40,852 KB
testcase_10 AC 114 ms
41,144 KB
testcase_11 AC 115 ms
41,320 KB
testcase_12 AC 120 ms
41,072 KB
testcase_13 AC 113 ms
41,272 KB
testcase_14 AC 111 ms
41,132 KB
testcase_15 AC 112 ms
41,012 KB
testcase_16 AC 116 ms
41,184 KB
testcase_17 AC 113 ms
41,272 KB
testcase_18 AC 122 ms
41,280 KB
testcase_19 AC 117 ms
41,296 KB
testcase_20 AC 117 ms
41,232 KB
testcase_21 AC 105 ms
40,148 KB
testcase_22 AC 116 ms
41,320 KB
testcase_23 AC 111 ms
41,296 KB
testcase_24 AC 114 ms
41,132 KB
testcase_25 AC 112 ms
41,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Question418
{
	public static void main(String[] str){
		
		Scanner scan = new Scanner(System.in);
		
		String s = scan.next();
		int cnt=0;
		
		s = s.replaceAll("-","");
		s = s.replaceAll("min","1");
		
		for(int i=0;i<s.length();i++){
			if(s.charAt(i)=='1')
				cnt++;
		}
		
		System.out.println(cnt);
	}
}
0