結果

問題 No.1373 Directed Operations
ユーザー yakeshibayakeshiba
提出日時 2021-06-07 23:56:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 106,936 KB
最終ジャッジ日時 2024-11-25 06:09:18
合計ジャッジ時間 4,042 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
60,032 KB
testcase_01 AC 44 ms
60,372 KB
testcase_02 AC 98 ms
90,524 KB
testcase_03 AC 77 ms
89,748 KB
testcase_04 AC 82 ms
90,460 KB
testcase_05 AC 44 ms
62,168 KB
testcase_06 AC 162 ms
106,936 KB
testcase_07 AC 61 ms
71,096 KB
testcase_08 AC 69 ms
79,668 KB
testcase_09 AC 121 ms
106,672 KB
testcase_10 AC 94 ms
88,888 KB
testcase_11 AC 67 ms
79,896 KB
testcase_12 AC 86 ms
88,844 KB
testcase_13 AC 50 ms
68,996 KB
testcase_14 AC 147 ms
97,964 KB
testcase_15 AC 134 ms
93,700 KB
testcase_16 AC 146 ms
97,972 KB
testcase_17 AC 108 ms
87,232 KB
testcase_18 AC 79 ms
83,812 KB
testcase_19 AC 91 ms
83,480 KB
testcase_20 AC 113 ms
93,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import copy

n = int(input())
Ao = list(map(int,input().split()))
A = copy.deepcopy(Ao)
A.sort()

visited = [0]*n
ans = defaultdict(list)

visited[0] = 1
ind = 1
for a in A:
    try:
        if visited[ind-a]:
            visited[ind] = 1
            ind += 1
            ans[a].append(ind-a)
        else:
            print("NO")
            exit()
    except IndexError:
        print("NO")
        exit()

print("YES")
for a in Ao:
    print(ans[a].pop())
0