結果

問題 No.536 人工知能
ユーザー jimanojimano
提出日時 2018-01-26 22:26:57
言語 Java
(openjdk 23)
結果
AC  
実行時間 72 ms / 1,000 ms
コード長 494 bytes
コンパイル時間 4,950 ms
コンパイル使用メモリ 74,916 KB
実行使用メモリ 37,304 KB
最終ジャッジ日時 2024-12-28 01:05:28
合計ジャッジ時間 6,919 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
36,932 KB
testcase_01 AC 65 ms
37,116 KB
testcase_02 AC 65 ms
37,188 KB
testcase_03 AC 68 ms
37,304 KB
testcase_04 AC 67 ms
36,804 KB
testcase_05 AC 67 ms
37,292 KB
testcase_06 AC 69 ms
37,196 KB
testcase_07 AC 63 ms
36,844 KB
testcase_08 AC 61 ms
37,244 KB
testcase_09 AC 63 ms
37,116 KB
testcase_10 AC 72 ms
36,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder;

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

public class No0536 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String input = br.readLine();

			String ans = input.endsWith("ai") ? input.substring(0, input.lastIndexOf("ai")) + "AI" : input + "-AI";

			System.out.println(ans);
		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0