結果

問題 No.1097 Remainder Operation
ユーザー yuruhiyayuruhiya
提出日時 2020-06-30 22:19:20
言語 Crystal
(1.11.2)
結果
AC  
実行時間 419 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 11,698 ms
コンパイル使用メモリ 296,344 KB
実行使用メモリ 48,076 KB
最終ジャッジ日時 2024-06-30 20:24:01
合計ジャッジ時間 17,470 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,948 KB
testcase_07 AC 32 ms
7,552 KB
testcase_08 AC 33 ms
7,552 KB
testcase_09 AC 32 ms
7,552 KB
testcase_10 AC 32 ms
7,552 KB
testcase_11 AC 32 ms
7,552 KB
testcase_12 AC 313 ms
47,196 KB
testcase_13 AC 330 ms
47,172 KB
testcase_14 AC 337 ms
47,284 KB
testcase_15 AC 358 ms
47,256 KB
testcase_16 AC 326 ms
47,160 KB
testcase_17 AC 272 ms
47,228 KB
testcase_18 AC 263 ms
47,892 KB
testcase_19 AC 325 ms
48,076 KB
testcase_20 AC 320 ms
47,888 KB
testcase_21 AC 416 ms
47,956 KB
testcase_22 AC 419 ms
47,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = read_line.to_i
a = read_line.split.map &.to_i64
b = Array.new(40) { [0i64]*n }
b.each_index do |i|
  b[i] = (i == 0 ? a : b[i - 1].map_with_index { |v, j|
    v + b[i - 1][(v + j) % n]
  })
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