結果

問題 No.676 C0nvertPr0b1em
ユーザー gemmarogemmaro
提出日時 2020-04-07 08:37:27
言語 Elixir
(1.18.1)
結果
AC  
実行時間 549 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 983 ms
コンパイル使用メモリ 63,876 KB
実行使用メモリ 56,004 KB
最終ジャッジ日時 2024-12-31 03:48:16
合計ジャッジ時間 18,821 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 549 ms
54,040 KB
testcase_01 AC 540 ms
56,004 KB
testcase_02 AC 539 ms
54,300 KB
testcase_03 AC 534 ms
54,424 KB
testcase_04 AC 546 ms
54,328 KB
testcase_05 AC 538 ms
53,912 KB
testcase_06 AC 537 ms
54,284 KB
testcase_07 AC 534 ms
54,448 KB
testcase_08 AC 535 ms
55,204 KB
testcase_09 AC 536 ms
54,520 KB
testcase_10 AC 535 ms
54,320 KB
testcase_11 AC 539 ms
54,856 KB
testcase_12 AC 534 ms
54,168 KB
testcase_13 AC 535 ms
54,280 KB
testcase_14 AC 534 ms
53,880 KB
testcase_15 AC 539 ms
54,168 KB
testcase_16 AC 531 ms
54,268 KB
testcase_17 AC 538 ms
53,728 KB
testcase_18 AC 537 ms
54,896 KB
testcase_19 AC 534 ms
54,652 KB
testcase_20 AC 534 ms
53,912 KB
testcase_21 AC 533 ms
54,296 KB
testcase_22 AC 535 ms
54,160 KB
testcase_23 AC 534 ms
54,040 KB
testcase_24 AC 537 ms
54,168 KB
testcase_25 AC 536 ms
54,244 KB
testcase_26 AC 538 ms
53,916 KB
testcase_27 AC 535 ms
54,288 KB
testcase_28 AC 538 ms
54,512 KB
testcase_29 AC 538 ms
54,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.replace(~r/[Il]/, "1")
    |> String.replace(~r/[Oo]/, "0")
    |> IO.puts()
  end
end
0