結果

問題 No.930 数列圧縮
ユーザー yuruhiyayuruhiya
提出日時 2020-10-25 17:28:17
言語 Crystal
(1.11.2)
結果
AC  
実行時間 21 ms / 2,000 ms
コード長 423 bytes
コンパイル時間 11,339 ms
コンパイル使用メモリ 295,748 KB
実行使用メモリ 12,184 KB
最終ジャッジ日時 2024-06-30 21:33:21
合計ジャッジ時間 13,873 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 14 ms
8,064 KB
testcase_09 AC 15 ms
8,832 KB
testcase_10 AC 14 ms
7,808 KB
testcase_11 AC 15 ms
8,064 KB
testcase_12 AC 16 ms
8,960 KB
testcase_13 AC 8 ms
6,940 KB
testcase_14 AC 10 ms
6,944 KB
testcase_15 AC 20 ms
11,648 KB
testcase_16 AC 19 ms
11,776 KB
testcase_17 AC 21 ms
12,184 KB
testcase_18 AC 20 ms
11,796 KB
testcase_19 AC 20 ms
11,788 KB
testcase_20 AC 20 ms
11,648 KB
testcase_21 AC 20 ms
11,776 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 19 ms
11,648 KB
testcase_24 AC 1 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

lib C
  fun strtoll(s : UInt8*, p : UInt8**, b : Int32) : Int64
end

class String
  def to_i64
    C.strtoll(self, nil, 10)
  end
end

n = read_line.to_i
a = read_line.split.map(&.to_i)
if a[0] < a[-1]
  puts "Yes"
  ans = [] of Int32
  (1..n - 2).each do |i|
    ans << a[i] if a[0] < a[i]
  end
  (1..n - 2).reverse_each do |i|
    ans << a[i] if a[i] < a[0]
  end
  ans << a[0]
  puts ans.join(' ')
else
  puts "No"
end
0