結果
問題 | No.678 2Dシューティングゲームの必殺ビーム |
ユーザー | siman |
提出日時 | 2022-10-24 14:27:50 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 350 bytes |
コンパイル時間 | 66 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-07-02 16:59:42 |
合計ジャッジ時間 | 2,554 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 81 ms
12,416 KB |
testcase_01 | AC | 78 ms
12,160 KB |
testcase_02 | WA | - |
testcase_03 | AC | 80 ms
12,160 KB |
testcase_04 | AC | 78 ms
12,032 KB |
testcase_05 | WA | - |
testcase_06 | AC | 78 ms
12,288 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 78 ms
12,160 KB |
testcase_15 | WA | - |
testcase_16 | AC | 74 ms
12,160 KB |
testcase_17 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
N, LB, RB = gets.split.map(&:to_i) P = N.times.map { |i| [i] + gets.split.map(&:to_i) } P.sort_by! { |_, _, yu, _, _| -yu } ans = Array.new(N, false) covered = Hash.new(false) P.each do |i, xl, yu, xr, yd| hit = false xl.upto(xr) do |x| hit |= !covered[x] covered[x] = true end ans[i] = hit end puts ans.map { |f| f ? 1 : 0 }