結果

問題 No.993 青色
ユーザー 54km54km
提出日時 2020-03-17 20:13:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 1,903 ms
コンパイル使用メモリ 74,100 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-11-30 22:53:09
合計ジャッジ時間 3,504 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,204 KB
testcase_01 AC 120 ms
41,172 KB
testcase_02 AC 127 ms
41,488 KB
testcase_03 AC 123 ms
40,760 KB
testcase_04 AC 116 ms
40,080 KB
testcase_05 AC 120 ms
41,176 KB
testcase_06 AC 127 ms
41,360 KB
testcase_07 AC 131 ms
40,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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