結果

問題 No.536 人工知能
ユーザー shinwisteriashinwisteria
提出日時 2018-02-16 22:08:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 337 bytes
コンパイル時間 3,951 ms
コンパイル使用メモリ 86,476 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-06-23 01:36:17
合計ジャッジ時間 5,434 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,004 KB
testcase_01 AC 131 ms
54,116 KB
testcase_02 AC 129 ms
54,096 KB
testcase_03 AC 121 ms
53,940 KB
testcase_04 WA -
testcase_05 AC 116 ms
52,700 KB
testcase_06 AC 123 ms
54,148 KB
testcase_07 AC 120 ms
54,364 KB
testcase_08 AC 107 ms
52,948 KB
testcase_09 AC 131 ms
54,032 KB
testcase_10 AC 132 ms
54,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con536 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String str = s.nextLine();
		s.close();
		if(str.indexOf("ai") == str.length()-2){
			System.out.println(str.replaceAll("ai", "AI"));
		}else{
			System.out.println(str + "-AI");
		}

	}

}
0