結果

問題 No.365 ジェンガソート
ユーザー zeroyonichihachizeroyonichihachi
提出日時 2016-10-18 11:06:19
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 246 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 30,848 KB
最終ジャッジ日時 2024-11-22 12:05:48
合計ジャッジ時間 28,463 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
17,408 KB
testcase_01 AC 85 ms
29,824 KB
testcase_02 AC 85 ms
17,536 KB
testcase_03 AC 85 ms
30,208 KB
testcase_04 AC 86 ms
17,536 KB
testcase_05 AC 87 ms
29,952 KB
testcase_06 AC 86 ms
19,108 KB
testcase_07 AC 85 ms
17,536 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 85 ms
12,032 KB
testcase_15 AC 85 ms
12,160 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,580 ms
12,416 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 TLE -
testcase_37 AC 162 ms
21,376 KB
testcase_38 WA -
testcase_39 TLE -
testcase_40 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

if __FILE__ == $0
  size = gets.to_i
  seq = gets.split(" ").map(&:to_i)

  count = 0
  1.upto(size-1) do |i|
    0.upto(i-1) do |j|
      if seq[i] < seq[j]
        count += 1
        break
      end
    end
  end

  p size - (size - count)
end
0