結果

問題 No.676 C0nvertPr0b1em
ユーザー gemmarogemmaro
提出日時 2020-04-07 08:37:27
言語 Elixir
(1.16.2)
結果
AC  
実行時間 583 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 1,053 ms
コンパイル使用メモリ 63,552 KB
実行使用メモリ 55,972 KB
最終ジャッジ日時 2024-06-09 23:10:25
合計ジャッジ時間 19,170 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 537 ms
54,964 KB
testcase_01 AC 538 ms
53,840 KB
testcase_02 AC 538 ms
54,432 KB
testcase_03 AC 535 ms
54,100 KB
testcase_04 AC 549 ms
53,868 KB
testcase_05 AC 535 ms
54,132 KB
testcase_06 AC 558 ms
55,972 KB
testcase_07 AC 571 ms
54,988 KB
testcase_08 AC 583 ms
54,928 KB
testcase_09 AC 545 ms
53,808 KB
testcase_10 AC 525 ms
53,864 KB
testcase_11 AC 536 ms
54,088 KB
testcase_12 AC 522 ms
54,480 KB
testcase_13 AC 531 ms
55,028 KB
testcase_14 AC 537 ms
55,384 KB
testcase_15 AC 547 ms
54,596 KB
testcase_16 AC 538 ms
53,844 KB
testcase_17 AC 543 ms
53,884 KB
testcase_18 AC 545 ms
54,416 KB
testcase_19 AC 547 ms
54,644 KB
testcase_20 AC 549 ms
54,140 KB
testcase_21 AC 561 ms
54,720 KB
testcase_22 AC 541 ms
54,556 KB
testcase_23 AC 545 ms
54,212 KB
testcase_24 AC 546 ms
53,692 KB
testcase_25 AC 544 ms
53,992 KB
testcase_26 AC 542 ms
54,244 KB
testcase_27 AC 547 ms
54,128 KB
testcase_28 AC 537 ms
55,044 KB
testcase_29 AC 532 ms
54,120 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