結果

問題 No.2860 Heal Slimes
ユーザー tomeruntomerun
提出日時 2024-08-25 16:10:11
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 946 bytes
コンパイル時間 10,626 ms
コンパイル使用メモリ 295,888 KB
実行使用メモリ 20,432 KB
最終ジャッジ日時 2024-08-25 16:10:28
合計ジャッジ時間 15,424 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 22 ms
6,944 KB
testcase_11 AC 20 ms
6,944 KB
testcase_12 AC 22 ms
6,940 KB
testcase_13 AC 21 ms
6,940 KB
testcase_14 AC 21 ms
6,940 KB
testcase_15 AC 27 ms
6,940 KB
testcase_16 AC 26 ms
6,940 KB
testcase_17 AC 25 ms
6,940 KB
testcase_18 AC 25 ms
6,940 KB
testcase_19 AC 24 ms
6,940 KB
testcase_20 AC 23 ms
14,932 KB
testcase_21 AC 23 ms
13,788 KB
testcase_22 AC 17 ms
9,472 KB
testcase_23 AC 30 ms
19,876 KB
testcase_24 AC 26 ms
15,460 KB
testcase_25 AC 22 ms
14,272 KB
testcase_26 AC 15 ms
9,088 KB
testcase_27 WA -
testcase_28 AC 28 ms
15,408 KB
testcase_29 AC 24 ms
13,104 KB
testcase_30 AC 31 ms
19,568 KB
testcase_31 AC 33 ms
18,960 KB
testcase_32 AC 32 ms
18,956 KB
testcase_33 AC 32 ms
19,132 KB
testcase_34 AC 33 ms
18,956 KB
testcase_35 AC 33 ms
18,660 KB
testcase_36 AC 30 ms
19,672 KB
testcase_37 AC 32 ms
19,188 KB
testcase_38 AC 30 ms
19,472 KB
testcase_39 AC 33 ms
19,740 KB
testcase_40 AC 33 ms
19,272 KB
testcase_41 AC 31 ms
19,568 KB
testcase_42 AC 31 ms
19,332 KB
testcase_43 AC 39 ms
18,832 KB
testcase_44 AC 33 ms
18,728 KB
testcase_45 AC 33 ms
18,436 KB
testcase_46 AC 34 ms
19,444 KB
testcase_47 AC 35 ms
19,124 KB
testcase_48 AC 35 ms
18,960 KB
testcase_49 AC 34 ms
19,480 KB
testcase_50 AC 35 ms
18,900 KB
testcase_51 AC 34 ms
18,980 KB
testcase_52 AC 33 ms
19,088 KB
testcase_53 AC 33 ms
19,368 KB
testcase_54 AC 33 ms
19,508 KB
testcase_55 AC 34 ms
20,432 KB
testcase_56 AC 32 ms
19,452 KB
testcase_57 AC 30 ms
18,956 KB
testcase_58 AC 32 ms
19,592 KB
testcase_59 AC 32 ms
20,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

read_line.to_i.times do
  puts solve() ? "Yes" : "No"
end

def solve
  n, k, x = read_line.split.map(&.to_i)
  h = read_line.split.map(&.to_i64)
  min = h.min
  h.map! { |v| v - min }
  if h.any? { |v| v % x != 0 }
    return false
  end
  h.map! { |v| v // x }
  diff = Array.new(n - 1) { |i| h[i + 1] - h[i] }
  ok = true
  k.times.all? do |i|
    if i == k - 1 && (diff.size - i) % k == 0
      next
    end
    c = 0i64
    if i == k - 1
      c = -(1i64 << 50)
    end
    i.step(to: diff.size - 1, by: k) do |j|
      if c < 0
        c = diff[j] + c
      elsif c > 0 && (diff.size - i) % k != 0
        ok = false
        break
      else
        c = diff[j]
      end
    end
    if i == k - 1
      if c < -(1i64 << 50)
        ok = false
      end
    elsif (diff.size - i) % k == 0
      if c > 0
        ok = false
      end
    else
      if c != 0
        ok = false
      end
    end
    if !ok
      break
    end
  end
  ok
end
0