結果

問題 No.1373 Directed Operations
ユーザー yuruhiyayuruhiya
提出日時 2021-02-05 21:36:49
言語 Crystal
(1.11.2)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 366 bytes
コンパイル時間 11,464 ms
コンパイル使用メモリ 295,984 KB
実行使用メモリ 13,144 KB
最終ジャッジ日時 2024-07-02 11:48:32
合計ジャッジ時間 13,458 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 16 ms
11,904 KB
testcase_03 AC 11 ms
10,952 KB
testcase_04 AC 15 ms
12,988 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 29 ms
12,928 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 27 ms
13,004 KB
testcase_10 AC 23 ms
9,856 KB
testcase_11 AC 7 ms
6,944 KB
testcase_12 AC 22 ms
10,240 KB
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 32 ms
13,144 KB
testcase_15 AC 27 ms
10,368 KB
testcase_16 AC 34 ms
13,056 KB
testcase_17 AC 16 ms
7,296 KB
testcase_18 AC 9 ms
6,940 KB
testcase_19 AC 13 ms
6,940 KB
testcase_20 AC 18 ms
7,552 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).each_with_index.to_a.sort
ans = [0] * ~-n
(0...n - 1).each do |i|
  if i + 1 < a[i][0]
    puts "NO"
    exit
  end
  ans[a[i][1]] = i + 2 - a[i][0]
end
puts "YES", ans.join('\n')
0