結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,136 KB
testcase_01 AC 134 ms
41,124 KB
testcase_02 WA -
testcase_03 AC 119 ms
40,148 KB
testcase_04 AC 132 ms
41,264 KB
testcase_05 WA -
testcase_06 AC 131 ms
41,184 KB
testcase_07 AC 132 ms
41,404 KB
testcase_08 AC 116 ms
39,876 KB
testcase_09 WA -
testcase_10 AC 135 ms
41,340 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