結果

問題 No.536 人工知能
ユーザー OlderInvestorOlderInvestor
提出日時 2017-09-19 21:45:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 1,000 ms
コード長 481 bytes
コンパイル時間 3,262 ms
コンパイル使用メモリ 76,240 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-04-25 18:19:34
合計ジャッジ時間 5,122 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,428 KB
testcase_01 AC 104 ms
53,188 KB
testcase_02 AC 101 ms
52,620 KB
testcase_03 AC 121 ms
54,424 KB
testcase_04 AC 124 ms
54,432 KB
testcase_05 AC 120 ms
54,184 KB
testcase_06 AC 116 ms
54,268 KB
testcase_07 AC 117 ms
54,396 KB
testcase_08 AC 103 ms
52,936 KB
testcase_09 AC 115 ms
54,236 KB
testcase_10 AC 113 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class No536 {
    public static void main(String[] args) {
        String s = new Scanner(System.in).next();

        Pattern p = Pattern.compile("ai$");
        Matcher m = p.matcher(s);

        if( m.find() ) {
            System.out.println(s.substring(0, s.length() - 2) + "AI");
        } else {
            System.out.println(s + "-AI");
        }
    }
}
0