結果

問題 No.418 ミンミンゼミ
ユーザー btkbtk
提出日時 2017-10-17 15:20:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 397 bytes
コンパイル時間 2,016 ms
コンパイル使用メモリ 74,172 KB
実行使用メモリ 41,356 KB
最終ジャッジ日時 2024-07-16 02:29:16
合計ジャッジ時間 5,628 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,168 KB
testcase_01 AC 102 ms
40,220 KB
testcase_02 AC 114 ms
41,356 KB
testcase_03 AC 115 ms
41,332 KB
testcase_04 AC 116 ms
41,284 KB
testcase_05 AC 102 ms
40,052 KB
testcase_06 AC 113 ms
41,232 KB
testcase_07 AC 112 ms
41,140 KB
testcase_08 AC 98 ms
40,220 KB
testcase_09 AC 101 ms
40,116 KB
testcase_10 AC 99 ms
40,256 KB
testcase_11 AC 115 ms
40,972 KB
testcase_12 AC 101 ms
39,992 KB
testcase_13 AC 112 ms
41,228 KB
testcase_14 AC 103 ms
40,052 KB
testcase_15 AC 96 ms
39,780 KB
testcase_16 AC 102 ms
40,132 KB
testcase_17 AC 112 ms
41,192 KB
testcase_18 AC 102 ms
40,320 KB
testcase_19 AC 103 ms
40,292 KB
testcase_20 AC 114 ms
41,228 KB
testcase_21 AC 116 ms
41,308 KB
testcase_22 AC 122 ms
41,232 KB
testcase_23 AC 115 ms
41,160 KB
testcase_24 AC 119 ms
40,996 KB
testcase_25 AC 115 ms
41,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        //ここから処理開始
        String s=sc.next();
        int ret = 0;
        for (int i = 0; i < s.length(); i++) {
            if(s.charAt(i)=='i')ret++;
        }
        System.out.println(ret);
        //ここまで
        sc.close();
    }
}
0