結果

問題 No.3043 yukicoderへようこそ!
ユーザー betrue12betrue12
提出日時 2019-04-01 23:50:09
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 425 bytes
コンパイル時間 46 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-05-05 09:43:23
合計ジャッジ時間 1,196 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

begin
    ns = gets.chomp
    if ns.include?(' ')
        ab = ns.split.map(&:to_i).inject(:+)
        s = gets.chomp
        puts "#{ab} #{s}"
        exit
    end

    N = ns.to_i
    lines = readlines
    if lines.size == 0
        puts N*(N+1)/2
    elsif lines.size == 1
        puts lines[0].split.map(&:to_i).inject(:+)
    else
        puts lines.map(&:to_i).inject(:+)
    end
    
rescue
    puts "Hello World!"
end
0