結果

問題 No.150 "良問"(良問とは言っていない
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-21 22:51:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 5,000 ms
コード長 1,831 bytes
コンパイル時間 2,426 ms
コンパイル使用メモリ 77,628 KB
実行使用メモリ 46,336 KB
最終ジャッジ日時 2024-10-11 01:54:34
合計ジャッジ時間 6,932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
45,108 KB
testcase_01 AC 135 ms
41,364 KB
testcase_02 AC 136 ms
41,468 KB
testcase_03 AC 120 ms
40,132 KB
testcase_04 AC 135 ms
41,636 KB
testcase_05 AC 135 ms
41,208 KB
testcase_06 AC 235 ms
46,244 KB
testcase_07 AC 122 ms
40,396 KB
testcase_08 AC 123 ms
40,140 KB
testcase_09 AC 141 ms
41,772 KB
testcase_10 AC 193 ms
45,188 KB
testcase_11 AC 202 ms
45,848 KB
testcase_12 AC 169 ms
44,228 KB
testcase_13 AC 200 ms
45,724 KB
testcase_14 AC 204 ms
46,188 KB
testcase_15 AC 203 ms
46,116 KB
testcase_16 AC 138 ms
41,712 KB
testcase_17 AC 155 ms
42,724 KB
testcase_18 AC 202 ms
46,252 KB
testcase_19 AC 203 ms
46,044 KB
testcase_20 AC 208 ms
46,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner koko = new Scanner(System.in);
        int t = koko.nextInt();
        String[] s = new String[t];
        for(int i=0; i<t; i++){
            s[i]=koko.next();
            char[] sc = s[i].toCharArray();
            int len = s[i].length();
            int[] count = new int[10000];
            int co = 0;
            for(int j=0; j<len-10; j++){
                int n=11;
                if(sc[j]=='g'){
                    n--;
                }
                if(sc[j+1]=='o'){
                    n--;
                }
                if(sc[j+2]=='o'){
                    n--;
                }
                if(sc[j+3]=='d'){
                    n--;
                }
                for(int k=j+4; k<len-6; k++){
                    int kcount = n;
                    if(sc[k]=='p'){
                        kcount--;
                    }
                    if(sc[k+1]=='r'){
                        kcount--;
                    }
                    if(sc[k+2]=='o'){
                        kcount--;
                    }
                    if(sc[k+3]=='b'){
                        kcount--;
                    }
                    if(sc[k+4]=='l'){
                        kcount--;
                    }
                    if(sc[k+5]=='e'){
                        kcount--;
                    }
                    if(sc[k+6]=='m'){
                        kcount--;
                    }
                    count[co++]=kcount;
                }
            }
            int[] rcount = new int[co];
            for(int m=0; m<co; m++){
                rcount[m]=count[m];
            }
            Arrays.sort(rcount);
            System.out.println(rcount[0]);
        }
    }
}
0