結果

問題 No.536 人工知能
ユーザー OlderInvestorOlderInvestor
提出日時 2017-09-19 21:45:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 481 bytes
コンパイル時間 3,902 ms
コンパイル使用メモリ 80,192 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-11-08 05:47:28
合計ジャッジ時間 5,949 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,096 KB
testcase_01 AC 136 ms
41,276 KB
testcase_02 AC 138 ms
41,112 KB
testcase_03 AC 136 ms
41,428 KB
testcase_04 AC 119 ms
40,040 KB
testcase_05 AC 134 ms
41,212 KB
testcase_06 AC 135 ms
41,176 KB
testcase_07 AC 136 ms
41,260 KB
testcase_08 AC 134 ms
41,244 KB
testcase_09 AC 136 ms
41,052 KB
testcase_10 AC 132 ms
41,308 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