結果

問題 No.1456 Range Xor
ユーザー kanno_kannokanno_kanno
提出日時 2021-04-22 19:36:48
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 570 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-07-04 06:31:32
合計ジャッジ時間 6,514 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,032 KB
testcase_01 AC 75 ms
12,288 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 83 ms
13,056 KB
testcase_12 AC 80 ms
12,416 KB
testcase_13 AC 89 ms
14,336 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 92 ms
15,232 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 84 ms
13,056 KB
testcase_25 AC 87 ms
13,824 KB
testcase_26 AC 103 ms
15,872 KB
testcase_27 WA -
testcase_28 AC 87 ms
13,312 KB
testcase_29 AC 109 ms
18,944 KB
testcase_30 WA -
testcase_31 AC 89 ms
13,568 KB
testcase_32 AC 89 ms
13,312 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 107 ms
18,688 KB
testcase_38 AC 83 ms
12,800 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 86 ms
12,288 KB
testcase_42 AC 90 ms
12,544 KB
testcase_43 AC 79 ms
12,288 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 79 ms
12,032 KB
testcase_47 AC 78 ms
12,032 KB
testcase_48 AC 78 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def reverse_calc(i, k, nums)
  tmp = nums[i]
  (0...i).to_a.reverse.each do |j|
    break if (tmp + nums[j]) > k

    tmp += nums[j]
  end

  tmp
end

def solve(line1, line2)
  n, k = line1.split.map(&:to_i)
  nums = line2.split.map(&:to_i)

  tmp = 0
  (0...n).each do |i|
    return 'No' if nums[i] > k
    next if (i != 0) && (nums[i - 1] == nums[i])

    tmp += nums[i]
    return 'Yes' if tmp == k

    # Kを超えた場合は再計算
    tmp = reverse_calc(i, k, nums) if tmp > k
  end

  'No'
end

line1 = gets.chomp
line2 = gets.chomp
puts solve(line1, line2)
0