結果

問題 No.536 人工知能
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 21:30:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 1,000 ms
コード長 429 bytes
コンパイル時間 3,998 ms
コンパイル使用メモリ 89,304 KB
実行使用メモリ 41,792 KB
最終ジャッジ日時 2024-11-06 08:04:38
合計ジャッジ時間 4,401 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,664 KB
testcase_01 AC 135 ms
41,532 KB
testcase_02 AC 131 ms
41,792 KB
testcase_03 AC 127 ms
41,556 KB
testcase_04 AC 131 ms
41,240 KB
testcase_05 AC 133 ms
41,248 KB
testcase_06 AC 129 ms
41,476 KB
testcase_07 AC 135 ms
41,556 KB
testcase_08 AC 133 ms
41,520 KB
testcase_09 AC 133 ms
41,268 KB
testcase_10 AC 122 ms
39,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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