結果

問題 No.536 人工知能
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-12 07:40:41
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 315 bytes
コンパイル時間 2,815 ms
コンパイル使用メモリ 77,392 KB
実行使用メモリ 41,372 KB
最終ジャッジ日時 2024-11-17 10:34:33
合計ジャッジ時間 4,532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
40,896 KB
testcase_01 AC 135 ms
41,224 KB
testcase_02 AC 135 ms
41,312 KB
testcase_03 AC 137 ms
41,232 KB
testcase_04 AC 134 ms
41,280 KB
testcase_05 AC 135 ms
41,372 KB
testcase_06 AC 134 ms
41,084 KB
testcase_07 AC 135 ms
41,332 KB
testcase_08 AC 132 ms
41,252 KB
testcase_09 AC 136 ms
41,356 KB
testcase_10 AC 136 ms
41,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s = sc.next();
		int n = s.length();
		if(s.substring(n - 2, n).equals("ai")) {
			s = s.substring(0, n - 2) + "AI";
		} else {
			s += "-AI";
		}
		System.out.println(s);
	}
}
0