結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー tacker530tacker530
提出日時 2021-11-22 18:22:32
言語 Ruby
(3.3.0)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 44,160 KB
最終ジャッジ日時 2024-06-24 06:24:32
合計ジャッジ時間 4,610 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 91 ms
12,160 KB
testcase_04 AC 90 ms
12,288 KB
testcase_05 AC 90 ms
12,160 KB
testcase_06 AC 90 ms
12,160 KB
testcase_07 AC 94 ms
12,672 KB
testcase_08 AC 111 ms
16,512 KB
testcase_09 AC 131 ms
19,200 KB
testcase_10 AC 236 ms
38,400 KB
testcase_11 AC 253 ms
38,912 KB
testcase_12 AC 246 ms
39,552 KB
testcase_13 AC 250 ms
40,064 KB
testcase_14 AC 251 ms
40,576 KB
testcase_15 AC 258 ms
41,344 KB
testcase_16 AC 279 ms
44,160 KB
testcase_17 AC 93 ms
12,160 KB
testcase_18 AC 89 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:4: warning: assigned but unused variable - count
Syntax OK

ソースコード

diff #

# No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
N = gets.chomp.to_i

count = 0

A = gets.chomp.split.map(&:to_i)

puts "#{A.sum}"
0