結果

問題 No.536 人工知能
ユーザー uafr_csuafr_cs
提出日時 2017-10-28 16:41:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 550 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 87,976 KB
実行使用メモリ 41,788 KB
最終ジャッジ日時 2024-11-22 03:31:59
合計ジャッジ時間 4,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,084 KB
testcase_01 AC 117 ms
40,140 KB
testcase_02 AC 124 ms
41,260 KB
testcase_03 AC 128 ms
41,300 KB
testcase_04 AC 118 ms
40,212 KB
testcase_05 AC 131 ms
41,312 KB
testcase_06 AC 130 ms
41,020 KB
testcase_07 AC 129 ms
41,216 KB
testcase_08 AC 129 ms
41,320 KB
testcase_09 AC 127 ms
41,788 KB
testcase_10 AC 127 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.PriorityQueue;
import java.util.Scanner;

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