結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,988 KB
testcase_01 AC 135 ms
41,328 KB
testcase_02 AC 134 ms
41,100 KB
testcase_03 AC 131 ms
41,188 KB
testcase_04 AC 129 ms
41,160 KB
testcase_05 AC 134 ms
40,860 KB
testcase_06 AC 123 ms
41,252 KB
testcase_07 AC 130 ms
41,200 KB
testcase_08 AC 131 ms
41,000 KB
testcase_09 AC 137 ms
41,212 KB
testcase_10 AC 136 ms
41,076 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