結果

問題 No.418 ミンミンゼミ
ユーザー poopi_pokepoopi_poke
提出日時 2016-11-25 03:56:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 358 bytes
コンパイル時間 2,148 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 41,584 KB
最終ジャッジ日時 2024-07-16 02:14:15
合計ジャッジ時間 6,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,424 KB
testcase_01 AC 123 ms
41,124 KB
testcase_02 AC 119 ms
40,932 KB
testcase_03 AC 100 ms
39,972 KB
testcase_04 AC 123 ms
41,480 KB
testcase_05 AC 121 ms
41,008 KB
testcase_06 AC 108 ms
40,120 KB
testcase_07 AC 123 ms
41,140 KB
testcase_08 AC 124 ms
41,400 KB
testcase_09 AC 131 ms
41,580 KB
testcase_10 AC 119 ms
41,136 KB
testcase_11 AC 125 ms
41,448 KB
testcase_12 AC 118 ms
41,016 KB
testcase_13 AC 118 ms
41,284 KB
testcase_14 AC 121 ms
41,520 KB
testcase_15 AC 117 ms
41,168 KB
testcase_16 AC 106 ms
40,632 KB
testcase_17 AC 115 ms
41,232 KB
testcase_18 AC 112 ms
41,080 KB
testcase_19 AC 120 ms
41,548 KB
testcase_20 AC 123 ms
41,584 KB
testcase_21 AC 112 ms
40,184 KB
testcase_22 AC 120 ms
41,332 KB
testcase_23 AC 120 ms
41,296 KB
testcase_24 AC 108 ms
40,344 KB
testcase_25 AC 117 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner; 
import java.lang.String; 
import java.util.regex.*;
class A{ 
public static void main(String args[])
{ 
int count=-1; 
Scanner sc = new Scanner(System.in); 
String s=sc.next(); 
Pattern p = Pattern.compile("mi-*n"); 
Matcher m = p.matcher(s);
boolean a=true; 
while(a){ 
 a = m.find(); 
count++;  
} 
System.out.print(count); 
} 
}
0