結果

問題 No.536 人工知能
ユーザー hjdhse79454gfehhjdhse79454gfeh
提出日時 2017-07-10 19:16:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 57 ms / 1,000 ms
コード長 574 bytes
コンパイル時間 1,859 ms
コンパイル使用メモリ 76,828 KB
実行使用メモリ 37,484 KB
最終ジャッジ日時 2024-10-07 07:07:45
合計ジャッジ時間 3,026 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,216 KB
testcase_01 AC 53 ms
37,484 KB
testcase_02 AC 52 ms
37,088 KB
testcase_03 AC 52 ms
37,240 KB
testcase_04 AC 54 ms
36,828 KB
testcase_05 AC 52 ms
37,208 KB
testcase_06 AC 52 ms
37,072 KB
testcase_07 AC 52 ms
37,384 KB
testcase_08 AC 56 ms
36,888 KB
testcase_09 AC 57 ms
37,216 KB
testcase_10 AC 55 ms
37,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
    public static void main(String[] args) throws Exception {
        // Here your code !
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
        if(line.endsWith("ai")){
            for(int i = 0; i < 2; i++){
                line = line.substring(0, line.length()-1);
            }
            System.out.println(line + "AI");
        }else{
            System.out.println(line + "-AI");
        }
        
    }
}
0