結果

問題 No.671 1000000007
ユーザー gemmarogemmaro
提出日時 2020-04-08 11:50:23
言語 Elixir
(1.16.2)
結果
AC  
実行時間 566 ms / 2,000 ms
コード長 154 bytes
コンパイル時間 1,239 ms
コンパイル使用メモリ 62,828 KB
実行使用メモリ 55,008 KB
最終ジャッジ日時 2024-06-09 23:12:42
合計ジャッジ時間 8,565 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 527 ms
54,884 KB
testcase_01 AC 528 ms
54,220 KB
testcase_02 AC 547 ms
55,008 KB
testcase_03 AC 542 ms
54,000 KB
testcase_04 AC 532 ms
53,956 KB
testcase_05 AC 529 ms
54,152 KB
testcase_06 AC 535 ms
53,992 KB
testcase_07 AC 539 ms
54,476 KB
testcase_08 AC 566 ms
54,076 KB
testcase_09 AC 538 ms
54,000 KB
testcase_10 AC 541 ms
54,744 KB
testcase_11 AC 537 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.length()
    |> (fn n -> abs(n - 10) end).()
    |> IO.puts()
  end
end
0