結果

問題 No.905 Sorted?
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2019-10-25 01:36:13
言語 Ruby
(3.3.0)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 33 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,392 KB
最終ジャッジ日時 2024-07-18 10:11:00
合計ジャッジ時間 6,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,032 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 89 ms
12,032 KB
testcase_03 AC 85 ms
12,288 KB
testcase_04 AC 86 ms
12,160 KB
testcase_05 AC 97 ms
12,416 KB
testcase_06 AC 95 ms
12,160 KB
testcase_07 AC 100 ms
12,928 KB
testcase_08 AC 325 ms
19,328 KB
testcase_09 AC 236 ms
16,768 KB
testcase_10 AC 328 ms
24,448 KB
testcase_11 AC 327 ms
20,608 KB
testcase_12 AC 353 ms
20,224 KB
testcase_13 AC 376 ms
27,264 KB
testcase_14 AC 375 ms
27,392 KB
testcase_15 AC 377 ms
24,448 KB
testcase_16 AC 382 ms
24,448 KB
testcase_17 AC 381 ms
24,576 KB
testcase_18 AC 326 ms
24,448 KB
testcase_19 AC 93 ms
12,288 KB
testcase_20 AC 89 ms
12,160 KB
testcase_21 AC 88 ms
12,288 KB
testcase_22 AC 90 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
s_i = Array.new(N, 0)
s_d = Array.new(N, 0)
1.upto(A.size - 1).each do |i|
  diff = A[i] - A[i - 1]

  s_i[i] = 1 if diff >= 0
  s_d[i] = 1 if diff <= 0
end

s_i = s_i.inject([]) { |array, n| array << (array.last || 0) + n && array }
s_d = s_d.inject([]) { |array, n| array << (array.last || 0) + n && array }

gets.to_i.times do
  l, r = gets.split.map(&:to_i)
  is_increase = s_i[r] - s_i[l] == r - l
  is_decrease = s_d[r] - s_d[l] == r - l

  puts "#{is_increase ? 1 : 0} #{is_decrease ? 1 : 0}"
end
0