結果

問題 No.993 青色
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-02-12 20:08:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 3,113 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-07-19 18:58:34
合計ジャッジ時間 4,700 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,428 KB
testcase_01 AC 95 ms
40,180 KB
testcase_02 AC 106 ms
40,712 KB
testcase_03 AC 114 ms
41,052 KB
testcase_04 AC 94 ms
40,028 KB
testcase_05 AC 104 ms
40,808 KB
testcase_06 AC 102 ms
40,760 KB
testcase_07 AC 101 ms
39,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// https://yukicoder.me/problems/no/993
public class Aoiro993 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);
    String s = sc.next();
    System.out.println(s.replaceAll("ao", "ki"));
  }
}
0