結果

問題 No.993 青色
ユーザー masa_ahemasa_ahe
提出日時 2020-03-11 04:44:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 2,585 ms
コンパイル使用メモリ 73,768 KB
実行使用メモリ 41,108 KB
最終ジャッジ日時 2024-11-15 23:54:53
合計ジャッジ時間 4,244 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,008 KB
testcase_01 AC 130 ms
41,076 KB
testcase_02 AC 130 ms
40,880 KB
testcase_03 AC 127 ms
40,876 KB
testcase_04 AC 128 ms
40,784 KB
testcase_05 AC 131 ms
40,768 KB
testcase_06 AC 128 ms
41,108 KB
testcase_07 AC 126 ms
40,904 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