結果
問題 | No.536 人工知能 |
ユーザー | fjafjafja |
提出日時 | 2017-07-17 19:14:34 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 134 ms / 1,000 ms |
コード長 | 388 bytes |
コンパイル時間 | 3,451 ms |
コンパイル使用メモリ | 75,000 KB |
実行使用メモリ | 41,324 KB |
最終ジャッジ日時 | 2024-10-08 07:03:58 |
合計ジャッジ時間 | 5,588 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
40,940 KB |
testcase_01 | AC | 132 ms
41,104 KB |
testcase_02 | AC | 132 ms
41,068 KB |
testcase_03 | AC | 134 ms
41,168 KB |
testcase_04 | AC | 134 ms
41,212 KB |
testcase_05 | AC | 129 ms
41,192 KB |
testcase_06 | AC | 130 ms
41,116 KB |
testcase_07 | AC | 130 ms
40,896 KB |
testcase_08 | AC | 131 ms
41,324 KB |
testcase_09 | AC | 130 ms
41,028 KB |
testcase_10 | AC | 132 ms
41,028 KB |
ソースコード
import java.util.Scanner; public class N536 { public static void main(String[] args) { Scanner sc=new Scanner(System.in); String S=sc.next(); int l=S.length(); StringBuilder sb=new StringBuilder(); sb.append(S); if(S.substring(l-2,l).equals("ai")) { sb.replace(l-2, l, "AI"); } else { sb.append("-AI"); } S=sb.toString(); System.out.println(S); } }