結果
問題 | No.536 人工知能 |
ユーザー | TwinkleStar74 |
提出日時 | 2017-10-24 01:15:28 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 58 ms / 1,000 ms |
コード長 | 485 bytes |
コンパイル時間 | 6,470 ms |
コンパイル使用メモリ | 77,552 KB |
実行使用メモリ | 37,304 KB |
最終ジャッジ日時 | 2024-11-21 15:49:48 |
合計ジャッジ時間 | 5,251 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 51 ms
36,612 KB |
testcase_01 | AC | 58 ms
37,152 KB |
testcase_02 | AC | 58 ms
37,188 KB |
testcase_03 | AC | 51 ms
36,852 KB |
testcase_04 | AC | 51 ms
37,112 KB |
testcase_05 | AC | 57 ms
37,304 KB |
testcase_06 | AC | 51 ms
36,604 KB |
testcase_07 | AC | 57 ms
37,160 KB |
testcase_08 | AC | 50 ms
37,028 KB |
testcase_09 | AC | 57 ms
37,196 KB |
testcase_10 | AC | 58 ms
37,112 KB |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No536 { public static void main(String[] args) throws IOException{ String str = new BufferedReader(new InputStreamReader(System.in)).readLine(); if(str.endsWith("ai")){ byte[] strByte = str.getBytes(); strByte[strByte.length - 2] -= 32; strByte[strByte.length - 1] -= 32; System.out.println(new String(strByte)); } else System.out.println(str + "-AI"); } }