結果

問題 No.1438 Broken Drawers
ユーザー simansiman
提出日時 2021-03-29 13:40:03
言語 Ruby
(3.3.0)
結果
AC  
実行時間 359 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 577 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 45,324 KB
最終ジャッジ日時 2024-05-06 23:09:27
合計ジャッジ時間 7,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
11,904 KB
testcase_01 AC 80 ms
12,160 KB
testcase_02 AC 78 ms
12,160 KB
testcase_03 AC 81 ms
12,160 KB
testcase_04 AC 76 ms
12,160 KB
testcase_05 AC 78 ms
12,160 KB
testcase_06 AC 290 ms
45,096 KB
testcase_07 AC 285 ms
45,232 KB
testcase_08 AC 82 ms
12,160 KB
testcase_09 AC 79 ms
12,288 KB
testcase_10 AC 77 ms
12,288 KB
testcase_11 AC 86 ms
13,440 KB
testcase_12 AC 164 ms
25,600 KB
testcase_13 AC 212 ms
30,848 KB
testcase_14 AC 138 ms
20,224 KB
testcase_15 AC 317 ms
43,668 KB
testcase_16 AC 301 ms
43,288 KB
testcase_17 AC 316 ms
44,788 KB
testcase_18 AC 324 ms
44,468 KB
testcase_19 AC 344 ms
44,564 KB
testcase_20 AC 355 ms
44,940 KB
testcase_21 AC 338 ms
44,860 KB
testcase_22 AC 349 ms
45,056 KB
testcase_23 AC 359 ms
45,000 KB
testcase_24 AC 347 ms
45,260 KB
testcase_25 AC 329 ms
45,256 KB
testcase_26 AC 353 ms
45,324 KB
testcase_27 AC 328 ms
45,016 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
pos = Hash.new

A.each_with_index do |a, i|
  pos[a] = i
end

checked = Hash.new(false)
ans = 0

A.sort.each do |a|
  idx = pos[a]
  next if checked[idx]

  checked[idx] = true
  checked[idx - 1] = true
  ans += 1
end

puts ans
0