結果

問題 No.163 cAPSlOCK
ユーザー 3qvwn3qvwn
提出日時 2019-07-03 22:42:33
言語 Elixir
(1.16.2)
結果
AC  
実行時間 563 ms / 5,000 ms
コード長 286 bytes
コンパイル時間 981 ms
コンパイル使用メモリ 63,760 KB
実行使用メモリ 55,920 KB
最終ジャッジ日時 2024-06-09 22:51:03
合計ジャッジ時間 14,830 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 540 ms
55,920 KB
testcase_01 AC 560 ms
55,208 KB
testcase_02 AC 542 ms
54,756 KB
testcase_03 AC 547 ms
54,772 KB
testcase_04 AC 546 ms
55,512 KB
testcase_05 AC 541 ms
55,180 KB
testcase_06 AC 543 ms
54,444 KB
testcase_07 AC 544 ms
54,260 KB
testcase_08 AC 538 ms
54,976 KB
testcase_09 AC 542 ms
54,256 KB
testcase_10 AC 561 ms
54,268 KB
testcase_11 AC 563 ms
54,248 KB
testcase_12 AC 538 ms
54,508 KB
testcase_13 AC 539 ms
54,456 KB
testcase_14 AC 550 ms
54,836 KB
testcase_15 AC 553 ms
55,108 KB
testcase_16 AC 541 ms
54,808 KB
testcase_17 AC 541 ms
55,380 KB
testcase_18 AC 538 ms
54,388 KB
testcase_19 AC 548 ms
55,112 KB
testcase_20 AC 528 ms
54,616 KB
testcase_21 AC 531 ms
55,448 KB
testcase_22 AC 558 ms
55,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do 
  def main do
    IO.gets("") |> String.trim |> String.codepoints |> Enum.map(&Main.updowncase(&1)) |> IO.puts
  end
  
  def updowncase(char) do
    if String.match?(char, ~r/[a-z]/) do
      String.upcase(char)
    else
      String.downcase(char)
    end
  end
end
0