結果

問題 No.365 ジェンガソート
ユーザー mizocodermizocoder
提出日時 2018-08-03 11:40:36
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 201 bytes
コンパイル時間 113 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 25,344 KB
最終ジャッジ日時 2024-09-19 17:21:06
合計ジャッジ時間 10,816 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,160 KB
testcase_01 AC 79 ms
12,160 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 76 ms
12,288 KB
testcase_05 AC 74 ms
12,160 KB
testcase_06 AC 74 ms
12,160 KB
testcase_07 AC 75 ms
12,032 KB
testcase_08 AC 77 ms
12,288 KB
testcase_09 AC 74 ms
12,288 KB
testcase_10 AC 73 ms
12,032 KB
testcase_11 AC 74 ms
12,160 KB
testcase_12 AC 78 ms
12,288 KB
testcase_13 AC 80 ms
12,032 KB
testcase_14 AC 79 ms
12,288 KB
testcase_15 AC 73 ms
12,160 KB
testcase_16 AC 407 ms
21,376 KB
testcase_17 AC 420 ms
23,808 KB
testcase_18 AC 101 ms
13,056 KB
testcase_19 AC 373 ms
23,680 KB
testcase_20 AC 172 ms
15,616 KB
testcase_21 AC 161 ms
14,592 KB
testcase_22 AC 401 ms
21,376 KB
testcase_23 AC 257 ms
17,536 KB
testcase_24 AC 393 ms
20,992 KB
testcase_25 AC 156 ms
14,336 KB
testcase_26 AC 308 ms
18,688 KB
testcase_27 AC 520 ms
24,832 KB
testcase_28 AC 319 ms
19,712 KB
testcase_29 AC 481 ms
23,040 KB
testcase_30 AC 333 ms
19,968 KB
testcase_31 AC 181 ms
15,104 KB
testcase_32 AC 183 ms
14,848 KB
testcase_33 AC 519 ms
24,960 KB
testcase_34 AC 139 ms
13,824 KB
testcase_35 AC 389 ms
21,248 KB
testcase_36 RE -
testcase_37 AC 346 ms
25,344 KB
testcase_38 AC 547 ms
25,344 KB
testcase_39 AC 335 ms
25,216 KB
testcase_40 AC 428 ms
25,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
num = gets.split.map(&:to_i)
numary = []

num.each_with_index {|num, idx| numary << [num, idx] }
numary.sort!.reverse!

i = 0
i += 1 while (numary[i][1] > numary[i+1][1])

puts n - (i+1)
0