結果
問題 | No.676 C0nvertPr0b1em |
ユーザー | prog470 |
提出日時 | 2018-05-17 10:08:20 |
言語 | Scala(Beta) (3.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 299 bytes |
コンパイル時間 | 6,921 ms |
コンパイル使用メモリ | 252,168 KB |
実行使用メモリ | 64,388 KB |
最終ジャッジ日時 | 2024-06-30 06:57:07 |
合計ジャッジ時間 | 32,001 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 773 ms
64,148 KB |
testcase_24 | AC | 805 ms
64,324 KB |
testcase_25 | WA | - |
testcase_26 | AC | 802 ms
64,232 KB |
testcase_27 | AC | 779 ms
64,148 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
object HelloScala { def main(args: Array[String]): Unit = { val in = io.StdIn.readLine().split("") var ans = "" for (e <- in){ e match { case "I" | "i" => ans += "1" case "O" | "o" => ans += "0" case _ => ans += e } } println(ans) } }