結果

問題 No.536 人工知能
ユーザー Pump0129Pump0129
提出日時 2018-03-27 10:05:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 514 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 76,184 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-06-25 12:40:28
合計ジャッジ時間 4,423 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,024 KB
testcase_01 AC 123 ms
41,400 KB
testcase_02 AC 110 ms
40,272 KB
testcase_03 AC 127 ms
41,312 KB
testcase_04 AC 122 ms
41,216 KB
testcase_05 AC 122 ms
41,292 KB
testcase_06 AC 115 ms
39,888 KB
testcase_07 AC 120 ms
41,140 KB
testcase_08 AC 123 ms
41,264 KB
testcase_09 AC 120 ms
41,124 KB
testcase_10 AC 126 ms
41,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no536;

import java.util.Scanner;

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

        String line = scan.nextLine();
        String name;
        if (line.substring(line.length() - 2, line.length()).equalsIgnoreCase("ai")) {
            name = line.substring(0, line.length() - 2) + "AI";
        } else {
            name = line + "-AI";
        }

        System.out.println(name);
    }
}
0