結果

問題 No.2268 NGワード回避
ユーザー kusagame12kusagame12
提出日時 2023-11-07 21:02:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 317 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 75,596 KB
実行使用メモリ 45,824 KB
最終ジャッジ日時 2024-09-25 23:27:42
合計ジャッジ時間 12,577 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
39,948 KB
testcase_01 AC 119 ms
41,644 KB
testcase_02 AC 115 ms
40,908 KB
testcase_03 AC 103 ms
39,848 KB
testcase_04 AC 116 ms
40,956 KB
testcase_05 AC 112 ms
39,996 KB
testcase_06 AC 119 ms
41,136 KB
testcase_07 AC 109 ms
40,552 KB
testcase_08 AC 144 ms
41,196 KB
testcase_09 AC 149 ms
41,576 KB
testcase_10 AC 152 ms
41,352 KB
testcase_11 AC 142 ms
41,184 KB
testcase_12 AC 143 ms
41,396 KB
testcase_13 AC 146 ms
41,492 KB
testcase_14 AC 144 ms
41,276 KB
testcase_15 AC 145 ms
41,004 KB
testcase_16 AC 146 ms
41,412 KB
testcase_17 AC 142 ms
41,152 KB
testcase_18 AC 142 ms
41,228 KB
testcase_19 AC 146 ms
41,416 KB
testcase_20 AC 150 ms
41,192 KB
testcase_21 AC 145 ms
41,156 KB
testcase_22 AC 142 ms
41,672 KB
testcase_23 AC 146 ms
41,480 KB
testcase_24 AC 142 ms
40,988 KB
testcase_25 AC 140 ms
41,172 KB
testcase_26 AC 144 ms
41,404 KB
testcase_27 AC 143 ms
41,224 KB
testcase_28 AC 147 ms
41,456 KB
testcase_29 AC 151 ms
41,144 KB
testcase_30 AC 147 ms
41,532 KB
testcase_31 AC 146 ms
41,464 KB
testcase_32 AC 146 ms
41,360 KB
testcase_33 AC 143 ms
41,564 KB
testcase_34 AC 145 ms
41,400 KB
testcase_35 AC 150 ms
41,180 KB
testcase_36 AC 148 ms
41,064 KB
testcase_37 AC 150 ms
41,072 KB
testcase_38 AC 155 ms
41,564 KB
testcase_39 AC 146 ms
41,312 KB
testcase_40 AC 146 ms
41,492 KB
testcase_41 AC 150 ms
41,044 KB
testcase_42 AC 144 ms
40,924 KB
testcase_43 AC 146 ms
41,340 KB
testcase_44 AC 148 ms
41,332 KB
testcase_45 AC 142 ms
41,136 KB
testcase_46 AC 143 ms
41,560 KB
testcase_47 AC 262 ms
45,592 KB
testcase_48 AC 279 ms
45,444 KB
testcase_49 AC 317 ms
45,824 KB
testcase_50 AC 269 ms
45,200 KB
testcase_51 AC 317 ms
44,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    
    public static void main(String[] args) throws Exception {
        
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        List<String> ngWords = new ArrayList<>();
        while(sc.hasNext()){
            ngWords.add(sc.next());
        }

        sc.close();
        
        char a = 'a';
        char b = 'b';
        StringBuilder sb = new StringBuilder();
        for(int i = 0 ; i < n ; i++){
            sb.append(a);
        }
        
        for(int i = 0 ; i < n ; i++){
            String str = sb.toString();
            if(!ngWords.contains(str)){
                System.out.println(str);
                return;
            }
            sb.setCharAt(i , b);
        }
        
        System.out.println(sb.toString());
        
    }
    
}
0