結果
問題 | No.993 青色 |
ユーザー | nogisun |
提出日時 | 2020-03-23 16:11:53 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 725 bytes |
コンパイル時間 | 3,493 ms |
コンパイル使用メモリ | 74,784 KB |
実行使用メモリ | 54,448 KB |
最終ジャッジ日時 | 2024-06-07 22:11:35 |
合計ジャッジ時間 | 4,236 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 112 ms
53,904 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
ソースコード
import java.util.Scanner; public class No993{ public static void main(final String[] args) { // 文字列の取得 final Scanner sc = new Scanner(System.in); final String s = sc.next(); // 処理 final String[] strArray = s.split(""); for (int i=0; i < strArray.length-1; i++){ if(strArray[i] == "a" && strArray[i+1] == "o"){ strArray[i] = "k"; strArray[i+1] = "i"; } } for (int i=0; i < strArray.length; i++){ if (i == strArray.length-1){ System.out.println(strArray[i]); } else { System.out.print(strArray[i]); } } } }