結果

問題 No.536 人工知能
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 17:26:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 278 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 76,124 KB
実行使用メモリ 54,204 KB
最終ジャッジ日時 2024-09-13 11:07:17
合計ジャッジ時間 4,228 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,204 KB
testcase_01 AC 115 ms
52,976 KB
testcase_02 AC 128 ms
54,164 KB
testcase_03 AC 131 ms
53,976 KB
testcase_04 AC 131 ms
54,020 KB
testcase_05 AC 128 ms
53,780 KB
testcase_06 AC 129 ms
54,132 KB
testcase_07 AC 128 ms
54,148 KB
testcase_08 AC 130 ms
54,128 KB
testcase_09 AC 131 ms
53,876 KB
testcase_10 AC 131 ms
54,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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