結果

問題 No.1505 Zero-Product Ranges
ユーザー gemmarogemmaro
提出日時 2021-05-26 23:10:51
言語 Ruby
(3.3.0)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 35,456 KB
最終ジャッジ日時 2024-10-15 17:02:11
合計ジャッジ時間 12,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,032 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 87 ms
12,032 KB
testcase_03 AC 212 ms
31,360 KB
testcase_04 AC 284 ms
35,020 KB
testcase_05 AC 148 ms
20,480 KB
testcase_06 AC 142 ms
18,816 KB
testcase_07 AC 131 ms
17,536 KB
testcase_08 AC 138 ms
18,560 KB
testcase_09 AC 136 ms
17,792 KB
testcase_10 AC 155 ms
21,504 KB
testcase_11 AC 170 ms
23,424 KB
testcase_12 AC 139 ms
16,884 KB
testcase_13 AC 206 ms
28,160 KB
testcase_14 AC 194 ms
26,368 KB
testcase_15 AC 282 ms
35,456 KB
testcase_16 AC 262 ms
32,460 KB
testcase_17 AC 260 ms
32,544 KB
testcase_18 AC 262 ms
32,708 KB
testcase_19 AC 88 ms
12,160 KB
testcase_20 AC 89 ms
12,160 KB
testcase_21 AC 91 ms
12,160 KB
testcase_22 AC 260 ms
32,432 KB
testcase_23 AC 262 ms
32,364 KB
testcase_24 AC 254 ms
31,616 KB
testcase_25 AC 248 ms
32,128 KB
testcase_26 AC 250 ms
31,616 KB
testcase_27 AC 243 ms
31,616 KB
testcase_28 AC 251 ms
32,640 KB
testcase_29 AC 254 ms
32,232 KB
testcase_30 AC 257 ms
32,676 KB
testcase_31 AC 272 ms
32,768 KB
testcase_32 AC 176 ms
23,552 KB
testcase_33 AC 170 ms
22,656 KB
testcase_34 AC 180 ms
24,192 KB
testcase_35 AC 161 ms
21,760 KB
testcase_36 AC 159 ms
22,016 KB
testcase_37 AC 173 ms
23,296 KB
testcase_38 AC 169 ms
22,912 KB
testcase_39 AC 173 ms
23,040 KB
testcase_40 AC 172 ms
23,296 KB
testcase_41 AC 184 ms
25,088 KB
testcase_42 AC 99 ms
12,672 KB
testcase_43 AC 107 ms
13,568 KB
testcase_44 AC 106 ms
13,440 KB
testcase_45 AC 102 ms
13,568 KB
testcase_46 AC 97 ms
12,416 KB
testcase_47 AC 104 ms
13,300 KB
testcase_48 AC 99 ms
12,416 KB
testcase_49 AC 92 ms
12,544 KB
testcase_50 AC 97 ms
13,440 KB
testcase_51 AC 105 ms
13,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

def solve
  A.map
   .with_index
   .select { |a, _| a.zero? }
   .map { |_, i| i }
   .tap { _1.unshift(-1) }
   .each_cons(2)
   .map { |prev, now| (now - prev) * (N - now) }
   .sum
end

N = gets.to_i
A = gets.split.map { _1.to_i }

puts solve
0