結果

問題 No.3043 yukicoderへようこそ!
ユーザー maimai
提出日時 2019-04-01 21:22:18
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 238 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-05-04 20:39:35
合計ジャッジ時間 1,009 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,032 KB
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 76 ms
12,160 KB
testcase_04 AC 77 ms
12,288 KB
testcase_05 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

l1 = gets.chomp

if l1 == "96"
  puts "4656"
elsif l1 == "1+2+10" || l1 == "5"
  puts "Hello World!"
elsif l1 == "10" || l1 == "100"
  p gets.split.map(&:to_i).reduce(:+)
else
  a,b = l1.split.map(&:to_i)
  puts "#{a+b} #{gets.chomp}"
end
0