結果

問題 No.536 人工知能
ユーザー samplelpmassamplelpmas
提出日時 2017-07-01 14:25:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 1,000 ms
コード長 512 bytes
コンパイル時間 3,023 ms
コンパイル使用メモリ 76,316 KB
実行使用メモリ 54,456 KB
最終ジャッジ日時 2024-10-05 03:35:53
合計ジャッジ時間 4,304 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
53,932 KB
testcase_01 AC 114 ms
53,840 KB
testcase_02 AC 112 ms
53,956 KB
testcase_03 AC 113 ms
53,944 KB
testcase_04 AC 107 ms
53,936 KB
testcase_05 AC 112 ms
54,456 KB
testcase_06 AC 108 ms
53,728 KB
testcase_07 AC 116 ms
53,972 KB
testcase_08 AC 108 ms
53,780 KB
testcase_09 AC 113 ms
54,080 KB
testcase_10 AC 106 ms
53,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        String ID = sc.next();

        int len = ID.length();

        if ((ID.charAt(len - 2) == 'a') && (ID.charAt(len - 1) == 'i')) {

            for (int i = 0; i < len - 2; i++) {
                System.out.print(ID.charAt(i));
            }

            System.out.println("AI");

        } else {

            System.out.println(ID + "-AI");

        }

    }

}
0