結果

問題 No.2835 Take and Flip
ユーザー maguroflymagurofly
提出日時 2024-08-09 21:21:37
言語 Ruby
(3.3.0)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 52 bytes
コンパイル時間 542 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-08-09 21:21:42
合計ジャッジ時間 4,521 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 81 ms
12,416 KB
testcase_02 AC 78 ms
12,160 KB
testcase_03 AC 151 ms
26,240 KB
testcase_04 AC 154 ms
26,368 KB
testcase_05 AC 81 ms
12,288 KB
testcase_06 AC 163 ms
24,960 KB
testcase_07 AC 149 ms
25,088 KB
testcase_08 AC 139 ms
24,192 KB
testcase_09 AC 154 ms
25,984 KB
testcase_10 AC 153 ms
26,112 KB
testcase_11 AC 162 ms
26,112 KB
testcase_12 AC 156 ms
25,984 KB
testcase_13 AC 155 ms
26,112 KB
testcase_14 AC 138 ms
17,408 KB
testcase_15 AC 84 ms
12,160 KB
testcase_16 AC 133 ms
21,632 KB
testcase_17 AC 84 ms
13,056 KB
testcase_18 AC 145 ms
23,168 KB
testcase_19 AC 163 ms
25,344 KB
testcase_20 AC 114 ms
17,024 KB
testcase_21 AC 150 ms
24,832 KB
testcase_22 AC 131 ms
21,760 KB
testcase_23 AC 112 ms
16,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

puts A.sum
0