結果

問題 No.1373 Directed Operations
ユーザー roarisroaris
提出日時 2021-02-13 01:02:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 102,528 KB
最終ジャッジ日時 2024-07-20 02:35:10
合計ジャッジ時間 4,728 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,376 KB
testcase_01 AC 50 ms
53,120 KB
testcase_02 AC 106 ms
95,616 KB
testcase_03 AC 70 ms
78,464 KB
testcase_04 AC 70 ms
80,640 KB
testcase_05 AC 45 ms
53,376 KB
testcase_06 AC 169 ms
102,528 KB
testcase_07 AC 73 ms
66,176 KB
testcase_08 AC 80 ms
72,192 KB
testcase_09 AC 122 ms
102,400 KB
testcase_10 AC 93 ms
88,960 KB
testcase_11 AC 64 ms
68,864 KB
testcase_12 AC 84 ms
78,592 KB
testcase_13 AC 54 ms
61,952 KB
testcase_14 AC 178 ms
100,096 KB
testcase_15 AC 163 ms
98,304 KB
testcase_16 AC 177 ms
100,224 KB
testcase_17 AC 116 ms
91,392 KB
testcase_18 AC 98 ms
84,736 KB
testcase_19 AC 123 ms
89,216 KB
testcase_20 AC 148 ms
96,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N = int(input())
a = list(map(int, input().split()))
b = a[:]
b.sort()
ans = defaultdict(list)
now = 1

for bi in b:
    if now-bi>=0:
        ans[bi].append(now-bi)
        now += 1
    else:
        print('NO')
        exit()

print('YES')

for ai in a:
    print(ans[ai].pop()+1)
0