結果

問題 No.2300 Substring OR Sum
ユーザー simansiman
提出日時 2023-05-15 18:19:09
言語 Ruby
(3.3.0)
結果
AC  
実行時間 952 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 30,080 KB
最終ジャッジ日時 2024-05-08 01:38:06
合計ジャッジ時間 10,874 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,160 KB
testcase_01 AC 74 ms
12,160 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 329 ms
15,616 KB
testcase_04 AC 277 ms
15,104 KB
testcase_05 AC 327 ms
15,872 KB
testcase_06 AC 199 ms
13,824 KB
testcase_07 AC 931 ms
29,952 KB
testcase_08 AC 411 ms
17,408 KB
testcase_09 AC 374 ms
16,512 KB
testcase_10 AC 684 ms
22,528 KB
testcase_11 AC 797 ms
24,192 KB
testcase_12 AC 952 ms
30,080 KB
testcase_13 AC 930 ms
29,824 KB
testcase_14 AC 846 ms
25,472 KB
testcase_15 AC 425 ms
17,664 KB
testcase_16 AC 700 ms
22,528 KB
testcase_17 AC 927 ms
29,824 KB
testcase_18 AC 77 ms
12,160 KB
testcase_19 AC 77 ms
12,288 KB
testcase_20 AC 76 ms
12,160 KB
testcase_21 AC 84 ms
12,160 KB
testcase_22 AC 81 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

ans = 0

30.times do |i|
  base = 2 ** i
  last = 0

  A.each.with_index(1) do |a, idx|
    if a[i] == 1
      last = idx
    end

    ans += base * last
  end
end

puts ans
0