結果

問題 No.536 人工知能
ユーザー Hiroaki KonoHiroaki Kono
提出日時 2017-10-31 20:34:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 442 bytes
コンパイル時間 3,766 ms
コンパイル使用メモリ 77,108 KB
実行使用メモリ 41,304 KB
最終ジャッジ日時 2024-11-22 11:13:00
合計ジャッジ時間 5,659 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,060 KB
testcase_01 AC 130 ms
41,084 KB
testcase_02 AC 130 ms
41,248 KB
testcase_03 AC 124 ms
40,808 KB
testcase_04 AC 126 ms
41,304 KB
testcase_05 AC 132 ms
41,176 KB
testcase_06 AC 129 ms
41,180 KB
testcase_07 AC 131 ms
41,216 KB
testcase_08 AC 128 ms
41,300 KB
testcase_09 AC 133 ms
41,068 KB
testcase_10 AC 137 ms
41,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No536 {

    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        String name = s.next();
        if (name.endsWith("ai")) {
            System.out.println(name.substring(0, name.length() - 2)
                               + name.substring(name.lastIndexOf("ai")).toUpperCase());
        } else {
            System.out.println(name + "-AI");
        }
    }
}
0