結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
53,156 KB
testcase_01 AC 125 ms
54,108 KB
testcase_02 WA -
testcase_03 AC 120 ms
54,132 KB
testcase_04 AC 115 ms
54,196 KB
testcase_05 WA -
testcase_06 AC 126 ms
54,244 KB
testcase_07 AC 106 ms
53,012 KB
testcase_08 AC 119 ms
54,184 KB
testcase_09 WA -
testcase_10 AC 123 ms
54,200 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