結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー gemmarogemmaro
提出日時 2020-03-30 22:19:25
言語 Elixir
(1.16.2)
結果
AC  
実行時間 689 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 1,330 ms
コンパイル使用メモリ 62,512 KB
実行使用メモリ 54,544 KB
最終ジャッジ日時 2024-06-09 23:05:14
合計ジャッジ時間 35,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 648 ms
53,936 KB
testcase_01 AC 650 ms
54,060 KB
testcase_02 AC 656 ms
54,364 KB
testcase_03 AC 644 ms
53,904 KB
testcase_04 AC 648 ms
53,948 KB
testcase_05 AC 657 ms
53,636 KB
testcase_06 AC 653 ms
53,524 KB
testcase_07 AC 637 ms
54,056 KB
testcase_08 AC 640 ms
54,108 KB
testcase_09 AC 660 ms
53,936 KB
testcase_10 AC 644 ms
54,144 KB
testcase_11 AC 632 ms
53,940 KB
testcase_12 AC 645 ms
53,864 KB
testcase_13 AC 646 ms
54,544 KB
testcase_14 AC 647 ms
53,740 KB
testcase_15 AC 638 ms
53,944 KB
testcase_16 AC 644 ms
53,984 KB
testcase_17 AC 647 ms
54,048 KB
testcase_18 AC 641 ms
53,680 KB
testcase_19 AC 645 ms
53,628 KB
testcase_20 AC 651 ms
53,948 KB
testcase_21 AC 638 ms
54,180 KB
testcase_22 AC 644 ms
53,572 KB
testcase_23 AC 657 ms
53,680 KB
testcase_24 AC 642 ms
54,064 KB
testcase_25 AC 636 ms
53,680 KB
testcase_26 AC 645 ms
54,356 KB
testcase_27 AC 659 ms
53,936 KB
testcase_28 AC 644 ms
54,160 KB
testcase_29 AC 644 ms
54,052 KB
testcase_30 AC 641 ms
54,064 KB
testcase_31 AC 649 ms
53,820 KB
testcase_32 AC 638 ms
53,544 KB
testcase_33 AC 645 ms
53,924 KB
testcase_34 AC 645 ms
54,032 KB
testcase_35 AC 650 ms
53,820 KB
testcase_36 AC 651 ms
53,544 KB
testcase_37 AC 647 ms
54,056 KB
testcase_38 AC 635 ms
53,944 KB
testcase_39 AC 639 ms
53,548 KB
testcase_40 AC 645 ms
53,676 KB
testcase_41 AC 689 ms
54,440 KB
testcase_42 AC 643 ms
53,680 KB
testcase_43 AC 639 ms
54,260 KB
testcase_44 AC 630 ms
52,780 KB
testcase_45 AC 635 ms
53,804 KB
testcase_46 AC 634 ms
53,808 KB
testcase_47 AC 639 ms
53,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    IO.gets("")
    |> String.trim()
    |> String.to_integer()
    |> (fn y -> 2017 - y end).()
    |> IO.puts()
  end
end
0