結果

問題 No.536 人工知能
ユーザー face4face4
提出日時 2018-04-21 18:27:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 375 bytes
コンパイル時間 2,290 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-06-27 05:26:05
合計ジャッジ時間 4,459 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,936 KB
testcase_01 AC 128 ms
53,772 KB
testcase_02 AC 130 ms
53,896 KB
testcase_03 AC 129 ms
54,064 KB
testcase_04 AC 129 ms
53,888 KB
testcase_05 AC 129 ms
54,420 KB
testcase_06 AC 135 ms
53,852 KB
testcase_07 AC 128 ms
53,912 KB
testcase_08 AC 128 ms
54,036 KB
testcase_09 AC 128 ms
53,992 KB
testcase_10 AC 127 ms
54,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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