結果

問題 No.536 人工知能
ユーザー bellbell
提出日時 2021-02-20 20:27:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 76,520 KB
実行使用メモリ 53,928 KB
最終ジャッジ日時 2024-09-18 20:52:35
合計ジャッジ時間 4,419 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,940 KB
testcase_01 AC 137 ms
41,456 KB
testcase_02 AC 134 ms
40,964 KB
testcase_03 AC 134 ms
41,308 KB
testcase_04 WA -
testcase_05 AC 138 ms
41,168 KB
testcase_06 AC 136 ms
41,156 KB
testcase_07 AC 133 ms
41,204 KB
testcase_08 AC 134 ms
41,024 KB
testcase_09 AC 138 ms
40,916 KB
testcase_10 AC 137 ms
41,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		String s = sc.next();
		sc.close();
		if( s.endsWith("ai")){
			System.out.println(s.replace("ai", "AI"));
		}else{
			System.out.println(s+"-AI");
		}
    }
}
0