結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー simansiman
提出日時 2021-03-18 05:38:43
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 118 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 25,984 KB
最終ジャッジ日時 2024-11-15 23:27:22
合計ジャッジ時間 7,855 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,032 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 79 ms
12,288 KB
testcase_03 AC 85 ms
12,288 KB
testcase_04 AC 82 ms
12,160 KB
testcase_05 WA -
testcase_06 AC 83 ms
12,160 KB
testcase_07 AC 81 ms
12,288 KB
testcase_08 WA -
testcase_09 AC 84 ms
12,032 KB
testcase_10 AC 79 ms
12,288 KB
testcase_11 AC 82 ms
12,160 KB
testcase_12 AC 80 ms
12,032 KB
testcase_13 AC 81 ms
12,032 KB
testcase_14 AC 81 ms
12,160 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 83 ms
12,160 KB
testcase_19 AC 83 ms
12,160 KB
testcase_20 AC 83 ms
12,288 KB
testcase_21 AC 83 ms
12,160 KB
testcase_22 AC 162 ms
23,040 KB
testcase_23 AC 106 ms
14,720 KB
testcase_24 AC 101 ms
14,208 KB
testcase_25 AC 163 ms
23,552 KB
testcase_26 AC 182 ms
25,856 KB
testcase_27 AC 166 ms
24,192 KB
testcase_28 AC 183 ms
25,728 KB
testcase_29 AC 119 ms
16,128 KB
testcase_30 AC 103 ms
14,848 KB
testcase_31 AC 182 ms
25,600 KB
testcase_32 AC 112 ms
15,872 KB
testcase_33 AC 92 ms
12,160 KB
testcase_34 AC 126 ms
16,640 KB
testcase_35 AC 179 ms
24,960 KB
testcase_36 AC 158 ms
21,632 KB
testcase_37 AC 102 ms
13,568 KB
testcase_38 AC 188 ms
25,984 KB
testcase_39 AC 92 ms
12,288 KB
testcase_40 AC 171 ms
23,296 KB
testcase_41 AC 123 ms
16,512 KB
testcase_42 AC 134 ms
17,024 KB
testcase_43 AC 91 ms
12,544 KB
testcase_44 AC 99 ms
13,568 KB
testcase_45 AC 191 ms
25,856 KB
testcase_46 AC 196 ms
25,984 KB
testcase_47 AC 196 ms
25,984 KB
testcase_48 AC 192 ms
25,984 KB
testcase_49 AC 190 ms
25,856 KB
testcase_50 AC 86 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

A.each_cons(2) do |a, b|
  cnt += 1 if a > b
end

puts [2, cnt].min
0