結果
問題 | No.274 The Wall |
ユーザー | YosukeKawada |
提出日時 | 2018-01-09 15:22:03 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,006 bytes |
コンパイル時間 | 306 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 46,848 KB |
最終ジャッジ日時 | 2024-06-06 03:19:07 |
合計ジャッジ時間 | 14,351 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 86 ms
12,288 KB |
testcase_01 | AC | 82 ms
12,032 KB |
testcase_02 | WA | - |
testcase_03 | AC | 95 ms
12,160 KB |
testcase_04 | AC | 89 ms
12,160 KB |
testcase_05 | AC | 85 ms
12,032 KB |
testcase_06 | AC | 83 ms
12,288 KB |
testcase_07 | AC | 84 ms
12,160 KB |
testcase_08 | AC | 83 ms
12,032 KB |
testcase_09 | AC | 82 ms
12,032 KB |
testcase_10 | AC | 87 ms
12,160 KB |
testcase_11 | AC | 93 ms
12,288 KB |
testcase_12 | AC | 1,792 ms
46,720 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 92 ms
12,288 KB |
testcase_17 | AC | 92 ms
12,416 KB |
testcase_18 | AC | 90 ms
12,416 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 1,298 ms
46,592 KB |
testcase_23 | AC | 1,297 ms
46,592 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
N,M = $stdin.gets.chomp.split(" ").map{ |a| a.to_i } lines = [] N.times { l,r = $stdin.gets.chomp.split(" ").map{ |a| a.to_i } lines << [l,r] } #p lines connection = (0...lines.size).map { |i| l0,r0 = *lines[i] vl0,vr0 = M-1-l0,M-1-r0 (0...lines.size).map { |j| next nil if i == j l1,r1 = *lines[j] ok1 = (r0 < l1 || r1 < l0) ok2 = (vr0 < l1 || r1 < vl0) case when ok1 && !ok2; +1 when !ok1 && ok2; -1 when ok1 && ok2; nil when !ok1 && !ok2 puts "NO" exit end } } #p connection status = (0..N).map{ nil } connection.each_with_index { |line,i| status[i] = status[i] || +1 line.each_with_index{ |c,j| case when i == j; next when c == +1 && status[j] == nil; status[j] = +status[i] when c == +1 && status[j] != status[i] puts "NO" exit when c == -1 && status[j] == nil; status[j] = -status[i] when c == -1 && status[j] == status[i] puts "NO" exit end } } #p status puts "YES"