結果
問題 | No.536 人工知能 |
ユーザー | kohaku_kohaku |
提出日時 | 2017-06-30 22:23:36 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 429 bytes |
コンパイル時間 | 1,894 ms |
コンパイル使用メモリ | 76,376 KB |
実行使用メモリ | 55,056 KB |
最終ジャッジ日時 | 2024-10-04 19:13:34 |
合計ジャッジ時間 | 3,903 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 113 ms
53,940 KB |
testcase_02 | AC | 113 ms
53,700 KB |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | AC | 112 ms
53,864 KB |
testcase_06 | WA | - |
testcase_07 | AC | 98 ms
52,824 KB |
testcase_08 | WA | - |
testcase_09 | AC | 111 ms
53,920 KB |
testcase_10 | AC | 110 ms
53,728 KB |
ソースコード
import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String S = sc.next(); solve(S); } static void solve(String S){ int N = S.length(); if(S.charAt(N-2)=='a'&&S.charAt(N-1)=='i'){ System.out.println(S.substring(0,N-3)+"AI"); }else{ System.out.println(S+"-AI"); } } }