結果

問題 No.536 人工知能
ユーザー YOSHIYOSHI
提出日時 2021-03-18 22:17:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 1,000 ms
コード長 456 bytes
コンパイル時間 3,015 ms
コンパイル使用メモリ 74,812 KB
実行使用メモリ 37,240 KB
最終ジャッジ日時 2024-11-17 04:27:30
合計ジャッジ時間 4,194 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,940 KB
testcase_01 AC 54 ms
37,120 KB
testcase_02 AC 55 ms
36,576 KB
testcase_03 AC 54 ms
37,056 KB
testcase_04 AC 52 ms
36,660 KB
testcase_05 AC 52 ms
37,024 KB
testcase_06 AC 55 ms
37,240 KB
testcase_07 AC 54 ms
36,800 KB
testcase_08 AC 55 ms
37,132 KB
testcase_09 AC 54 ms
37,228 KB
testcase_10 AC 55 ms
36,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No00000536_Main {
	static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
	public static void main(String[] args) throws IOException {
		String s = br.readLine();
		if("ai".equals(s.substring(s.length()-2))) {
			System.out.println(s.substring(0, s.length()-2) + "AI");
		} else {
			System.out.println(s + "-AI");
		}
	}
}
0