結果

問題 No.1373 Directed Operations
ユーザー yuruhiyayuruhiya
提出日時 2021-02-06 15:08:51
言語 Ruby
(3.3.0)
結果
AC  
実行時間 713 ms / 2,000 ms
コード長 187 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-07-02 23:46:04
合計ジャッジ時間 9,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 88 ms
12,032 KB
testcase_02 AC 471 ms
29,696 KB
testcase_03 AC 411 ms
25,472 KB
testcase_04 AC 413 ms
26,752 KB
testcase_05 AC 91 ms
12,032 KB
testcase_06 AC 667 ms
30,464 KB
testcase_07 AC 101 ms
12,160 KB
testcase_08 AC 143 ms
13,056 KB
testcase_09 AC 625 ms
26,368 KB
testcase_10 AC 531 ms
23,808 KB
testcase_11 AC 195 ms
14,848 KB
testcase_12 AC 517 ms
23,168 KB
testcase_13 AC 143 ms
12,672 KB
testcase_14 AC 713 ms
30,336 KB
testcase_15 AC 608 ms
27,264 KB
testcase_16 AC 685 ms
29,824 KB
testcase_17 AC 525 ms
24,064 KB
testcase_18 AC 265 ms
17,492 KB
testcase_19 AC 309 ms
16,128 KB
testcase_20 AC 419 ms
17,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

ans = [0] * ~-gets.to_i
gets.split.map(&:to_i).each_with_index.to_a.sort.each_with_index do |(a, j), i|
	puts('NO') + exit if i + 1 < a
	ans[j] = i + 2 - a
end
puts 'YES', ans.join("\n")
0