結果

問題 No.536 人工知能
ユーザー Amanita2016Amanita2016
提出日時 2017-07-01 11:39:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 119 ms / 1,000 ms
コード長 394 bytes
コンパイル時間 2,104 ms
コンパイル使用メモリ 75,904 KB
実行使用メモリ 53,944 KB
最終ジャッジ日時 2024-10-05 03:26:19
合計ジャッジ時間 4,028 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
52,992 KB
testcase_01 AC 117 ms
53,904 KB
testcase_02 AC 119 ms
52,696 KB
testcase_03 AC 118 ms
53,920 KB
testcase_04 AC 107 ms
52,996 KB
testcase_05 AC 115 ms
53,940 KB
testcase_06 AC 116 ms
53,928 KB
testcase_07 AC 111 ms
53,676 KB
testcase_08 AC 116 ms
53,944 KB
testcase_09 AC 108 ms
52,680 KB
testcase_10 AC 116 ms
52,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Main {

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

}
0