結果

問題 No.2226 Hello, Forgotten World!
ユーザー norikamenorikame
提出日時 2022-12-14 12:28:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 224 ms / 2,000 ms
コード長 987 bytes
コンパイル時間 1,939 ms
コンパイル使用メモリ 77,696 KB
実行使用メモリ 57,464 KB
最終ジャッジ日時 2024-06-24 21:22:26
合計ジャッジ時間 4,348 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,192 KB
testcase_01 AC 224 ms
57,464 KB
testcase_02 AC 201 ms
56,456 KB
testcase_03 AC 191 ms
56,344 KB
testcase_04 AC 156 ms
54,008 KB
testcase_05 AC 184 ms
56,100 KB
testcase_06 AC 170 ms
54,268 KB
testcase_07 AC 175 ms
56,356 KB
testcase_08 AC 151 ms
54,108 KB
testcase_09 AC 193 ms
56,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 

import java.util.*;

public class Main {
    private static final String TAR = "helloworld";
    public static void main(String[] args) {
        final int TLEN = TAR.length();
        Scanner sc = new Scanner(System.in);
        int t0 = sc.nextInt();
        for (int i0=0; i0<t0; ++i0) {
            int n = sc.nextInt();
            String s = sc.next(), res = "";
            for (int i=0; i+TLEN-1<n; ++i) {
                boolean ok = true;
                for (int j=0; j<TLEN; ++j) if (s.charAt(i+j)!='?' && s.charAt(i+j)!=TAR.charAt(j)) {
                    ok = false;
                    break;
                }
                if (!ok) continue;
                String ts = new StringBuilder(s).replace(i, i+TLEN, TAR).toString().replace('?', 'a');
                if (res.isEmpty() || ts.compareTo(res)<0) res = ts;
            }
            if (res.isEmpty()) System.out.println(-1);
            else System.out.println(res);
        }
        sc.close();
    }
}
0