結果

問題 No.2860 Heal Slimes
ユーザー tomeruntomerun
提出日時 2024-08-25 15:54:08
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 10,490 ms
コンパイル使用メモリ 296,692 KB
実行使用メモリ 20,180 KB
最終ジャッジ日時 2024-08-25 15:54:27
合計ジャッジ時間 15,211 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 21 ms
6,940 KB
testcase_11 AC 20 ms
6,940 KB
testcase_12 AC 21 ms
6,940 KB
testcase_13 AC 20 ms
6,944 KB
testcase_14 AC 20 ms
6,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 24 ms
14,484 KB
testcase_21 AC 23 ms
14,080 KB
testcase_22 AC 20 ms
9,472 KB
testcase_23 AC 32 ms
19,940 KB
testcase_24 AC 26 ms
15,464 KB
testcase_25 AC 23 ms
14,276 KB
testcase_26 AC 17 ms
9,088 KB
testcase_27 AC 30 ms
16,044 KB
testcase_28 AC 27 ms
15,368 KB
testcase_29 AC 21 ms
13,332 KB
testcase_30 AC 28 ms
19,248 KB
testcase_31 AC 30 ms
19,368 KB
testcase_32 AC 30 ms
19,160 KB
testcase_33 AC 31 ms
19,088 KB
testcase_34 AC 32 ms
18,648 KB
testcase_35 AC 33 ms
18,632 KB
testcase_36 AC 29 ms
19,488 KB
testcase_37 AC 31 ms
18,692 KB
testcase_38 AC 30 ms
19,572 KB
testcase_39 AC 32 ms
20,140 KB
testcase_40 AC 32 ms
19,780 KB
testcase_41 AC 32 ms
19,172 KB
testcase_42 AC 32 ms
19,480 KB
testcase_43 AC 31 ms
20,180 KB
testcase_44 AC 32 ms
18,740 KB
testcase_45 AC 32 ms
19,260 KB
testcase_46 AC 32 ms
18,964 KB
testcase_47 AC 33 ms
19,376 KB
testcase_48 AC 32 ms
19,244 KB
testcase_49 AC 31 ms
19,076 KB
testcase_50 AC 40 ms
19,348 KB
testcase_51 AC 31 ms
18,960 KB
testcase_52 AC 31 ms
19,084 KB
testcase_53 AC 31 ms
19,452 KB
testcase_54 AC 33 ms
19,464 KB
testcase_55 AC 31 ms
18,952 KB
testcase_56 AC 34 ms
19,468 KB
testcase_57 AC 32 ms
18,968 KB
testcase_58 AC 31 ms
18,456 KB
testcase_59 AC 34 ms
19,272 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] }
  k.times.all? do |i|
    sum = i.step(to: diff.size - 1, by: k).sum { |j| diff[j] }
    if i == k - 1
      sum >= 0
    elsif i == k - 1 || (diff.size - i) % k == 0
      sum <= 0
    else
      sum == 0
    end
  end
end
0