結果

問題 No.530 年齢って毎年変わるし覚えるの難しいよね
ユーザー yumechiyumechi
提出日時 2017-06-23 23:20:22
言語 Elixir
(1.16.2)
結果
AC  
実行時間 619 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 797 ms
コンパイル使用メモリ 62,512 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-06-09 22:00:58
合計ジャッジ時間 28,699 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 546 ms
53,684 KB
testcase_01 AC 554 ms
53,364 KB
testcase_02 AC 538 ms
53,672 KB
testcase_03 AC 543 ms
53,548 KB
testcase_04 AC 556 ms
53,908 KB
testcase_05 AC 531 ms
53,416 KB
testcase_06 AC 530 ms
53,544 KB
testcase_07 AC 529 ms
53,548 KB
testcase_08 AC 527 ms
53,680 KB
testcase_09 AC 528 ms
53,420 KB
testcase_10 AC 535 ms
54,024 KB
testcase_11 AC 533 ms
53,296 KB
testcase_12 AC 533 ms
53,544 KB
testcase_13 AC 532 ms
53,668 KB
testcase_14 AC 536 ms
53,552 KB
testcase_15 AC 531 ms
54,144 KB
testcase_16 AC 541 ms
53,672 KB
testcase_17 AC 539 ms
53,780 KB
testcase_18 AC 529 ms
53,412 KB
testcase_19 AC 532 ms
53,684 KB
testcase_20 AC 531 ms
53,284 KB
testcase_21 AC 525 ms
53,688 KB
testcase_22 AC 529 ms
53,812 KB
testcase_23 AC 542 ms
53,520 KB
testcase_24 AC 534 ms
53,552 KB
testcase_25 AC 539 ms
53,416 KB
testcase_26 AC 539 ms
53,660 KB
testcase_27 AC 532 ms
53,488 KB
testcase_28 AC 528 ms
53,800 KB
testcase_29 AC 538 ms
53,492 KB
testcase_30 AC 527 ms
53,548 KB
testcase_31 AC 525 ms
53,692 KB
testcase_32 AC 526 ms
53,800 KB
testcase_33 AC 518 ms
53,556 KB
testcase_34 AC 525 ms
53,556 KB
testcase_35 AC 619 ms
53,424 KB
testcase_36 AC 527 ms
53,548 KB
testcase_37 AC 539 ms
53,608 KB
testcase_38 AC 549 ms
53,856 KB
testcase_39 AC 551 ms
53,460 KB
testcase_40 AC 530 ms
53,800 KB
testcase_41 AC 531 ms
54,036 KB
testcase_42 AC 552 ms
53,636 KB
testcase_43 AC 557 ms
53,752 KB
testcase_44 AC 531 ms
53,552 KB
testcase_45 AC 530 ms
53,808 KB
testcase_46 AC 529 ms
53,676 KB
testcase_47 AC 531 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    s = IO.gets("") |> Integer.parse |> elem(0)
    IO.puts (2017 - s)
  end
end

0