結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー LeonardoneLeonardone
提出日時 2016-09-30 06:24:12
言語 Ruby
(3.3.0)
結果
AC  
実行時間 635 ms / 3,000 ms
コード長 402 bytes
コンパイル時間 60 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 56,704 KB
最終ジャッジ日時 2024-06-07 12:23:34
合計ジャッジ時間 6,038 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,288 KB
testcase_01 AC 76 ms
12,032 KB
testcase_02 AC 80 ms
12,032 KB
testcase_03 AC 82 ms
12,032 KB
testcase_04 AC 79 ms
12,160 KB
testcase_05 AC 85 ms
12,160 KB
testcase_06 AC 84 ms
12,160 KB
testcase_07 AC 93 ms
12,544 KB
testcase_08 AC 136 ms
16,000 KB
testcase_09 AC 198 ms
21,888 KB
testcase_10 AC 526 ms
42,368 KB
testcase_11 AC 532 ms
42,624 KB
testcase_12 AC 542 ms
50,048 KB
testcase_13 AC 591 ms
51,072 KB
testcase_14 AC 573 ms
51,456 KB
testcase_15 AC 580 ms
52,864 KB
testcase_16 AC 635 ms
56,704 KB
testcase_17 AC 82 ms
12,160 KB
testcase_18 AC 80 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = STDIN.gets.to_i
A = STDIN.read.strip.split.map(&:to_i)

if !(2 .. 500000).include? N
    STDERR.puts "invalid N"
    exit 1
end

if N != A.size
    STDERR.puts "invalid A size"
    exit 1
end

if !A.all?{|x| (0 ... (2 ** 63)).include? x}
    STDERR.puts "Invalid A value"
    exit 1
end

sum = A.inject(:+)

if !(0 ... (2 ** 63)).include? sum
    STDERR.puts "Invalid sum"
    exit 1
end

puts sum
0