結果

問題 No.993 青色
ユーザー 5 45 4
提出日時 2020-05-13 07:49:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 2,305 ms
コンパイル使用メモリ 71,060 KB
実行使用メモリ 56,384 KB
最終ジャッジ日時 2023-10-12 16:29:37
合計ジャッジ時間 4,236 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
55,784 KB
testcase_01 AC 117 ms
55,740 KB
testcase_02 AC 118 ms
56,204 KB
testcase_03 AC 118 ms
56,384 KB
testcase_04 AC 118 ms
55,816 KB
testcase_05 AC 117 ms
55,924 KB
testcase_06 AC 119 ms
56,244 KB
testcase_07 AC 119 ms
56,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main {
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String str = sc.nextLine();
        String result = str.replace("ao","ki");
        System.out.println(result);
    }
}
0