結果

問題 No.1097 Remainder Operation
ユーザー yuruhiyayuruhiya
提出日時 2020-06-30 21:57:56
言語 Crystal
(1.11.2)
結果
AC  
実行時間 401 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 11,712 ms
コンパイル使用メモリ 295,940 KB
実行使用メモリ 47,500 KB
最終ジャッジ日時 2024-06-30 20:23:24
合計ジャッジ時間 18,379 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 29 ms
7,552 KB
testcase_08 AC 30 ms
7,552 KB
testcase_09 AC 29 ms
7,552 KB
testcase_10 AC 30 ms
7,552 KB
testcase_11 AC 30 ms
7,424 KB
testcase_12 AC 287 ms
47,216 KB
testcase_13 AC 303 ms
47,240 KB
testcase_14 AC 311 ms
47,232 KB
testcase_15 AC 319 ms
47,152 KB
testcase_16 AC 296 ms
47,152 KB
testcase_17 AC 261 ms
47,228 KB
testcase_18 AC 245 ms
47,368 KB
testcase_19 AC 301 ms
47,364 KB
testcase_20 AC 293 ms
47,500 KB
testcase_21 AC 401 ms
47,464 KB
testcase_22 AC 401 ms
47,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
a = read_line.split.map &.to_i64
b = Array.new(Math.log2(10i64**12).to_i.succ) { [0i64]*n }
b.size.times do |i|
  if i == 0
    b[i] = a
  else
    b[i] = b[i - 1].map_with_index { |v, j|
      v + b[i - 1][(v + j) % n]
    }
  end
end

read_line.to_i.times do
  k = read_line.to_i64
  ans = 0i64
  b.each_with_index do |v, i|
    if k.bit(i) == 1
      ans += v[ans % n]
    end
  end
  puts ans
end
0