結果
問題 | No.536 人工知能 |
ユーザー | shinwisteria |
提出日時 | 2018-02-16 22:06:25 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 336 bytes |
コンパイル時間 | 3,669 ms |
コンパイル使用メモリ | 76,000 KB |
実行使用メモリ | 41,540 KB |
最終ジャッジ日時 | 2024-06-23 01:25:12 |
合計ジャッジ時間 | 5,850 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 118 ms
40,108 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 121 ms
41,176 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 107 ms
39,948 KB |
testcase_07 | WA | - |
testcase_08 | AC | 132 ms
41,140 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
package m.shin; import java.util.Scanner; public class Con536 { public static void main(String[] args) { Scanner s = new Scanner(System.in); String str = s.nextLine(); s.close(); if(str.indexOf("ai") == str.length()-2){ System.out.println(str.replaceAll("ai", "AI")); }else{ System.out.println(str + "AI"); } } }