結果

問題 No.993 青色
ユーザー 5 45 4
提出日時 2020-05-13 07:49:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 2,029 ms
コンパイル使用メモリ 74,060 KB
実行使用メモリ 41,232 KB
最終ジャッジ日時 2024-09-14 15:05:58
合計ジャッジ時間 3,770 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,080 KB
testcase_01 AC 128 ms
40,712 KB
testcase_02 AC 126 ms
40,904 KB
testcase_03 AC 129 ms
41,232 KB
testcase_04 AC 126 ms
40,824 KB
testcase_05 AC 113 ms
39,644 KB
testcase_06 AC 123 ms
41,148 KB
testcase_07 AC 123 ms
41,136 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