結果

問題 No.1373 Directed Operations
ユーザー marroncastlemarroncastle
提出日時 2021-02-05 21:52:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 872 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 109,988 KB
最終ジャッジ日時 2024-07-02 12:23:58
合計ジャッジ時間 3,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
55,412 KB
testcase_01 AC 37 ms
53,900 KB
testcase_02 AC 99 ms
99,020 KB
testcase_03 AC 59 ms
85,384 KB
testcase_04 AC 62 ms
87,696 KB
testcase_05 AC 35 ms
54,544 KB
testcase_06 AC 134 ms
109,876 KB
testcase_07 AC 54 ms
68,108 KB
testcase_08 AC 56 ms
75,332 KB
testcase_09 AC 100 ms
109,988 KB
testcase_10 AC 87 ms
106,752 KB
testcase_11 AC 51 ms
73,900 KB
testcase_12 AC 69 ms
92,832 KB
testcase_13 AC 44 ms
65,156 KB
testcase_14 AC 153 ms
101,464 KB
testcase_15 AC 139 ms
97,856 KB
testcase_16 AC 151 ms
101,460 KB
testcase_17 AC 110 ms
93,152 KB
testcase_18 AC 82 ms
85,720 KB
testcase_19 AC 91 ms
90,208 KB
testcase_20 AC 107 ms
96,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
from collections import Counter
C = Counter(A)
ans = 'YES'
cum = 0
now = 1
lis = [[] for _ in range(N)]
for i in range(1,N):
  cum += C[i]
  if cum<i:
    ans = 'NO'
    break
  for _ in range(C[i]):
    now += 1
    lis[i].append(now)
print(ans)
if ans=='YES':
  for i in range(N-1):
    print(lis[A[i]].pop()-A[i])
0