結果

問題 No.536 人工知能
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2017-06-30 22:28:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 110 ms / 1,000 ms
コード長 510 bytes
コンパイル時間 2,399 ms
コンパイル使用メモリ 76,972 KB
実行使用メモリ 54,116 KB
最終ジャッジ日時 2024-10-04 19:41:14
合計ジャッジ時間 4,076 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
53,824 KB
testcase_01 AC 107 ms
53,880 KB
testcase_02 AC 110 ms
52,648 KB
testcase_03 AC 105 ms
53,760 KB
testcase_04 AC 102 ms
53,752 KB
testcase_05 AC 108 ms
53,816 KB
testcase_06 AC 94 ms
52,812 KB
testcase_07 AC 103 ms
53,788 KB
testcase_08 AC 105 ms
54,080 KB
testcase_09 AC 109 ms
53,988 KB
testcase_10 AC 109 ms
54,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        solve(S);
    }
    static void solve(String S){
        int N = S.length();
        if(S.charAt(N-2)=='a'&&S.charAt(N-1)=='i'){
            for(int i=0; i<=N-3; i++){
                System.out.print(S.charAt(i));
            }
            System.out.println("AI");
        }else{
            System.out.println(S+"-AI");
        }
    }
}
0