結果

問題 No.536 人工知能
ユーザー kazapyon27kazapyon27
提出日時 2017-07-06 00:49:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 47 ms / 1,000 ms
コード長 463 bytes
コンパイル時間 2,852 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 40,424 KB
最終ジャッジ日時 2024-10-05 20:19:53
合計ジャッジ時間 4,124 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,684 KB
testcase_01 AC 47 ms
40,424 KB
testcase_02 AC 46 ms
37,116 KB
testcase_03 AC 45 ms
36,812 KB
testcase_04 AC 44 ms
37,028 KB
testcase_05 AC 44 ms
36,968 KB
testcase_06 AC 45 ms
37,048 KB
testcase_07 AC 46 ms
36,920 KB
testcase_08 AC 45 ms
36,948 KB
testcase_09 AC 46 ms
36,692 KB
testcase_10 AC 44 ms
36,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/*No.536 人工知能*/
import java.io.*;
import java.util.regex.Pattern;
public class No536 {
	public static void main(String[] args) {
		try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){
			String id =input.readLine();
			Pattern p =Pattern.compile("ai$");
			if(p.matcher(id).find()){
				System.out.println(id.replaceAll("ai$", "AI"));
			}else{
				System.out.println(id.concat("-AI"));
			}
		}catch(Exception e){
			
		}
	}
}
0