結果

問題 No.1373 Directed Operations
ユーザー yuruhiyayuruhiya
提出日時 2021-02-05 21:38:11
言語 Crystal
(1.11.2)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 14,375 ms
コンパイル使用メモリ 296,564 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-07-02 11:51:29
合計ジャッジ時間 16,532 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 19 ms
11,904 KB
testcase_03 AC 15 ms
10,496 KB
testcase_04 AC 18 ms
12,800 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 33 ms
12,800 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 32 ms
12,800 KB
testcase_10 AC 26 ms
9,856 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 26 ms
10,112 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 36 ms
12,800 KB
testcase_15 AC 31 ms
10,368 KB
testcase_16 AC 36 ms
12,800 KB
testcase_17 AC 16 ms
7,296 KB
testcase_18 AC 8 ms
6,144 KB
testcase_19 AC 14 ms
6,272 KB
testcase_20 AC 19 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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