結果

問題 No.536 人工知能
ユーザー matsuyoshi30matsuyoshi30
提出日時 2018-04-18 23:29:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 338 bytes
コンパイル時間 2,304 ms
コンパイル使用メモリ 76,060 KB
実行使用メモリ 41,412 KB
最終ジャッジ日時 2024-06-27 04:36:58
合計ジャッジ時間 4,272 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,104 KB
testcase_01 AC 127 ms
40,916 KB
testcase_02 AC 126 ms
41,132 KB
testcase_03 AC 125 ms
41,268 KB
testcase_04 AC 125 ms
41,296 KB
testcase_05 AC 126 ms
41,180 KB
testcase_06 AC 129 ms
41,412 KB
testcase_07 AC 112 ms
39,756 KB
testcase_08 AC 113 ms
40,176 KB
testcase_09 AC 127 ms
41,128 KB
testcase_10 AC 128 ms
41,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String s = in.next();

        if(s.substring(s.length()-2).equals("ai"))
            System.out.println(s.substring(0, s.length()-2) + "AI");
        else
            System.out.println(s + "-AI");
    }
}
0