結果

問題 No.1097 Remainder Operation
ユーザー yuruhiyayuruhiya
提出日時 2020-06-30 22:01:16
言語 Crystal
(1.11.2)
結果
AC  
実行時間 424 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 11,708 ms
コンパイル使用メモリ 295,780 KB
実行使用メモリ 48,008 KB
最終ジャッジ日時 2024-06-30 20:23:42
合計ジャッジ時間 17,703 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,812 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 32 ms
7,552 KB
testcase_08 AC 34 ms
7,552 KB
testcase_09 AC 32 ms
7,552 KB
testcase_10 AC 32 ms
7,552 KB
testcase_11 AC 33 ms
7,552 KB
testcase_12 AC 318 ms
47,224 KB
testcase_13 AC 335 ms
47,156 KB
testcase_14 AC 343 ms
47,404 KB
testcase_15 AC 366 ms
47,276 KB
testcase_16 AC 322 ms
47,268 KB
testcase_17 AC 275 ms
47,204 KB
testcase_18 AC 268 ms
47,860 KB
testcase_19 AC 323 ms
47,940 KB
testcase_20 AC 325 ms
47,924 KB
testcase_21 AC 421 ms
47,980 KB
testcase_22 AC 424 ms
48,008 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.each_index 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
  puts b.each_with_index.reduce(0i64) { |acc, (v, i)|
    acc + (k.bit(i) == 1 ? v[acc % n] : 0)
  }
end
0