結果

問題 No.905 Sorted?
ユーザー simansiman
提出日時 2021-12-09 04:47:56
言語 Ruby
(3.3.0)
結果
AC  
実行時間 447 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 29,548 KB
最終ジャッジ日時 2024-07-16 15:35:25
合計ジャッジ時間 7,551 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 81 ms
12,160 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 82 ms
12,160 KB
testcase_04 AC 83 ms
12,160 KB
testcase_05 AC 89 ms
12,544 KB
testcase_06 AC 85 ms
12,416 KB
testcase_07 AC 94 ms
12,928 KB
testcase_08 AC 376 ms
20,992 KB
testcase_09 AC 269 ms
16,892 KB
testcase_10 AC 368 ms
22,656 KB
testcase_11 AC 391 ms
24,064 KB
testcase_12 AC 431 ms
23,168 KB
testcase_13 AC 447 ms
29,432 KB
testcase_14 AC 438 ms
29,548 KB
testcase_15 AC 437 ms
26,624 KB
testcase_16 AC 443 ms
26,880 KB
testcase_17 AC 447 ms
26,752 KB
testcase_18 AC 368 ms
26,624 KB
testcase_19 AC 82 ms
12,160 KB
testcase_20 AC 82 ms
12,160 KB
testcase_21 AC 79 ms
12,288 KB
testcase_22 AC 78 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
Q = gets.to_i

counter = Array.new(N) { [0, 0] }

1.upto(N - 1) do |i|
  counter[i][0] = counter[i - 1][0]
  counter[i][1] = counter[i - 1][1]

  if A[i - 1] < A[i]
    counter[i][0] += 1
  elsif A[i - 1] > A[i]
    counter[i][1] += 1
  end
end

Q.times do
  l, r = gets.split.map(&:to_i)
  ans = [0, 0]

  if counter[r][0] == counter[l][0]
    ans[1] = 1
  end

  if counter[r][1] == counter[l][1]
    ans[0] = 1
  end

  puts ans.join(' ')
end
0