結果

問題 No.1242 高橋君とすごろく
ユーザー semisagisemisagi
提出日時 2020-10-02 21:33:38
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 535 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-16 04:24:53
合計ジャッジ時間 4,164 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,288 KB
testcase_01 AC 83 ms
12,288 KB
testcase_02 WA -
testcase_03 AC 82 ms
12,288 KB
testcase_04 AC 80 ms
12,160 KB
testcase_05 WA -
testcase_06 AC 87 ms
12,416 KB
testcase_07 AC 83 ms
12,032 KB
testcase_08 AC 83 ms
12,288 KB
testcase_09 AC 81 ms
12,160 KB
testcase_10 AC 84 ms
12,160 KB
testcase_11 AC 84 ms
12,288 KB
testcase_12 AC 83 ms
12,160 KB
testcase_13 AC 84 ms
12,160 KB
testcase_14 AC 82 ms
12,160 KB
testcase_15 AC 83 ms
12,288 KB
testcase_16 WA -
testcase_17 AC 84 ms
12,288 KB
testcase_18 AC 86 ms
12,288 KB
testcase_19 AC 83 ms
12,288 KB
testcase_20 WA -
testcase_21 AC 85 ms
12,288 KB
testcase_22 AC 83 ms
12,160 KB
testcase_23 AC 85 ms
12,288 KB
testcase_24 AC 84 ms
12,160 KB
testcase_25 AC 87 ms
12,288 KB
testcase_26 AC 85 ms
12,160 KB
testcase_27 AC 87 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n, k = gets.split.map(&:to_i)
a = gets.split.map(&:to_i)

(0 ... k).each do |i|
    (i + 1 ... k).each do |j|
        if [1, 3, 5].include?(a[j] - a[i])
            if a[i] >= 100
                puts "No"
                exit
            end
        end
    end
end

can = [true] * 200

a.each do |x|
    can[x] = false if x < 200
end

(0 ... 150).reverse_each do |i|
    if (!can[i + 1] && !can[i + 6]) || (!can[i + 2] && !can[i + 5]) || (!can[i + 3] && !can[i + 4])
        can[i] = false
    end
end

puts (can[0] ? 'Yes' : 'No')

0