結果

問題 No.993 青色
ユーザー masa_ahemasa_ahe
提出日時 2020-03-11 04:44:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 1,641 ms
コンパイル使用メモリ 73,660 KB
実行使用メモリ 53,920 KB
最終ジャッジ日時 2024-04-27 19:03:09
合計ジャッジ時間 2,955 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
52,868 KB
testcase_01 AC 110 ms
53,804 KB
testcase_02 AC 95 ms
52,852 KB
testcase_03 AC 92 ms
52,780 KB
testcase_04 AC 102 ms
53,920 KB
testcase_05 AC 100 ms
53,864 KB
testcase_06 AC 96 ms
52,836 KB
testcase_07 AC 103 ms
53,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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