結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,160 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 86 ms
12,288 KB
testcase_03 AC 91 ms
12,032 KB
testcase_04 AC 87 ms
12,032 KB
testcase_05 AC 85 ms
12,032 KB
testcase_06 AC 330 ms
45,108 KB
testcase_07 AC 326 ms
45,296 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 89 ms
12,032 KB
testcase_10 AC 92 ms
12,160 KB
testcase_11 AC 100 ms
13,440 KB
testcase_12 AC 192 ms
25,728 KB
testcase_13 AC 256 ms
30,720 KB
testcase_14 AC 149 ms
20,224 KB
testcase_15 AC 379 ms
43,544 KB
testcase_16 AC 352 ms
43,260 KB
testcase_17 AC 363 ms
44,752 KB
testcase_18 AC 373 ms
45,224 KB
testcase_19 AC 368 ms
44,572 KB
testcase_20 AC 369 ms
44,704 KB
testcase_21 AC 361 ms
44,864 KB
testcase_22 AC 371 ms
44,900 KB
testcase_23 AC 380 ms
45,268 KB
testcase_24 AC 377 ms
45,104 KB
testcase_25 AC 382 ms
45,132 KB
testcase_26 AC 364 ms
45,256 KB
testcase_27 AC 379 ms
45,364 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