結果

問題 No.1249 小学校1年生の夢
ユーザー penqenpenqen
提出日時 2020-12-14 17:03:39
言語 Elixir
(1.16.2)
結果
AC  
実行時間 580 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 1,092 ms
コンパイル使用メモリ 63,892 KB
実行使用メモリ 55,420 KB
最終ジャッジ日時 2024-06-10 00:10:22
合計ジャッジ時間 20,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 525 ms
54,124 KB
testcase_01 AC 527 ms
54,132 KB
testcase_02 AC 534 ms
54,128 KB
testcase_03 AC 551 ms
54,172 KB
testcase_04 AC 542 ms
53,736 KB
testcase_05 AC 533 ms
54,348 KB
testcase_06 AC 539 ms
54,516 KB
testcase_07 AC 524 ms
55,192 KB
testcase_08 AC 532 ms
54,848 KB
testcase_09 AC 555 ms
54,728 KB
testcase_10 AC 567 ms
54,116 KB
testcase_11 AC 529 ms
54,464 KB
testcase_12 AC 525 ms
53,996 KB
testcase_13 AC 573 ms
53,808 KB
testcase_14 AC 520 ms
54,952 KB
testcase_15 AC 537 ms
54,604 KB
testcase_16 AC 526 ms
53,860 KB
testcase_17 AC 534 ms
54,584 KB
testcase_18 AC 529 ms
55,020 KB
testcase_19 AC 545 ms
54,200 KB
testcase_20 AC 526 ms
55,272 KB
testcase_21 AC 556 ms
54,452 KB
testcase_22 AC 541 ms
53,948 KB
testcase_23 AC 527 ms
53,920 KB
testcase_24 AC 533 ms
55,420 KB
testcase_25 AC 533 ms
53,992 KB
testcase_26 AC 539 ms
53,916 KB
testcase_27 AC 560 ms
54,136 KB
testcase_28 AC 545 ms
54,120 KB
testcase_29 AC 580 ms
54,384 KB
testcase_30 AC 545 ms
55,160 KB
testcase_31 AC 556 ms
53,744 KB
testcase_32 AC 525 ms
55,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

defmodule Main do
    def main do
        [a, b, c] = IO.read(:line) |> String.trim() |> String.split(" ") |> Enum.map(&String.to_integer/1)
        solve(a, b, c) |> IO.puts()
    end
    
     def solve(a, b, c) when 0 <= a and b <= 100 and 0 <= c and c <= 200 do
        if a + b == c do
          "Correct"
        else
          "Incorrect"
        end
    end

    def solve(_a, _b, _c), do: "Incorrect"
end
0