結果

問題 No.536 人工知能
ユーザー tentententen
提出日時 2020-11-12 08:36:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 473 bytes
コンパイル時間 1,853 ms
コンパイル使用メモリ 76,456 KB
実行使用メモリ 41,032 KB
最終ジャッジ日時 2024-07-22 19:00:33
合計ジャッジ時間 3,615 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
39,856 KB
testcase_01 AC 90 ms
40,004 KB
testcase_02 AC 124 ms
40,992 KB
testcase_03 AC 89 ms
39,624 KB
testcase_04 AC 90 ms
40,420 KB
testcase_05 AC 105 ms
41,032 KB
testcase_06 AC 107 ms
40,772 KB
testcase_07 AC 100 ms
40,384 KB
testcase_08 AC 89 ms
40,420 KB
testcase_09 AC 105 ms
40,988 KB
testcase_10 AC 94 ms
39,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        char[] arr = sc.next().toCharArray();
        int length = arr.length;
        if (arr[length - 2] == 'a' && arr[length - 1] == 'i')  {
            arr[length - 2] = 'A';
            arr[length - 1] = 'I';
            System.out.println(arr);
        } else {
            System.out.println(new String(arr) + "-AI");
        }
    }
}
0