結果

問題 No.536 人工知能
ユーザー tsunabittsunabit
提出日時 2018-07-04 19:27:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 472 bytes
コンパイル時間 3,822 ms
コンパイル使用メモリ 78,824 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-07-01 02:16:05
合計ジャッジ時間 6,059 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,944 KB
testcase_01 AC 134 ms
54,024 KB
testcase_02 AC 134 ms
53,816 KB
testcase_03 AC 128 ms
53,932 KB
testcase_04 AC 135 ms
54,084 KB
testcase_05 AC 134 ms
54,108 KB
testcase_06 AC 130 ms
54,248 KB
testcase_07 AC 133 ms
53,892 KB
testcase_08 AC 133 ms
53,624 KB
testcase_09 AC 133 ms
53,816 KB
testcase_10 AC 137 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

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