結果

問題 No.1249 小学校1年生の夢
ユーザー g_kenkung_kenkun
提出日時 2020-12-06 19:02:35
言語 Elixir
(1.16.2)
結果
AC  
実行時間 586 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 977 ms
コンパイル使用メモリ 63,676 KB
実行使用メモリ 55,308 KB
最終ジャッジ日時 2024-06-10 00:11:34
合計ジャッジ時間 20,484 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
54,340 KB
testcase_01 AC 541 ms
53,668 KB
testcase_02 AC 529 ms
54,384 KB
testcase_03 AC 527 ms
54,112 KB
testcase_04 AC 531 ms
53,888 KB
testcase_05 AC 549 ms
55,308 KB
testcase_06 AC 539 ms
54,052 KB
testcase_07 AC 530 ms
54,088 KB
testcase_08 AC 530 ms
54,708 KB
testcase_09 AC 531 ms
54,828 KB
testcase_10 AC 542 ms
53,984 KB
testcase_11 AC 530 ms
54,004 KB
testcase_12 AC 526 ms
53,984 KB
testcase_13 AC 530 ms
54,088 KB
testcase_14 AC 554 ms
53,752 KB
testcase_15 AC 586 ms
54,096 KB
testcase_16 AC 543 ms
54,748 KB
testcase_17 AC 570 ms
54,144 KB
testcase_18 AC 553 ms
53,932 KB
testcase_19 AC 546 ms
53,928 KB
testcase_20 AC 541 ms
54,072 KB
testcase_21 AC 580 ms
53,616 KB
testcase_22 AC 547 ms
54,248 KB
testcase_23 AC 532 ms
54,552 KB
testcase_24 AC 530 ms
53,916 KB
testcase_25 AC 567 ms
54,196 KB
testcase_26 AC 557 ms
53,884 KB
testcase_27 AC 545 ms
54,420 KB
testcase_28 AC 546 ms
53,984 KB
testcase_29 AC 545 ms
54,272 KB
testcase_30 AC 558 ms
54,348 KB
testcase_31 AC 559 ms
54,560 KB
testcase_32 AC 577 ms
54,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
  def main do
    [a, b, c] =
      IO.gets("")
      |> String.trim()
      |> String.split(" ", trim: true)
      |> Enum.map(&String.to_integer/1)

    if a + b == c, do: IO.puts("Correct"), else: IO.puts("Incorrect")
  end
end
0