結果

問題 No.536 人工知能
ユーザー 37zigen37zigen
提出日時 2020-01-23 04:47:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 1,000 ms
コード長 419 bytes
コンパイル時間 1,886 ms
コンパイル使用メモリ 75,508 KB
実行使用メモリ 41,324 KB
最終ジャッジ日時 2024-07-18 07:36:02
合計ジャッジ時間 3,553 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
39,864 KB
testcase_01 AC 96 ms
40,144 KB
testcase_02 AC 112 ms
41,096 KB
testcase_03 AC 99 ms
40,096 KB
testcase_04 AC 107 ms
41,012 KB
testcase_05 AC 110 ms
40,888 KB
testcase_06 AC 107 ms
41,096 KB
testcase_07 AC 107 ms
41,100 KB
testcase_08 AC 100 ms
41,324 KB
testcase_09 AC 111 ms
40,968 KB
testcase_10 AC 103 ms
40,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

class Main{
	public static void main(String[] args){
		new Main().run();
	}
	
	void run(){
		Scanner sc=new Scanner(System.in);
		String s=sc.next();
		char[] c=s.toCharArray();
		int n=s.length();
		String tail="";
		if(c[n-2]=='a'&&c[n-1]=='i'){
			c[n-2]='A';c[n-1]='I';
		}else{
			tail="-AI";
		}
		for(int i=0;i<n;++i)System.out.print(c[i]);
		System.out.println(tail);
	}
}
0