結果

問題 No.1373 Directed Operations
ユーザー tassei903tassei903
提出日時 2021-02-05 21:52:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 274 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,712 KB
最終ジャッジ日時 2024-07-02 12:23:46
合計ジャッジ時間 4,444 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,368 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 165 ms
15,120 KB
testcase_03 AC 50 ms
12,616 KB
testcase_04 AC 65 ms
20,596 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 198 ms
20,396 KB
testcase_07 AC 34 ms
10,752 KB
testcase_08 AC 47 ms
11,776 KB
testcase_09 AC 122 ms
20,652 KB
testcase_10 AC 90 ms
19,108 KB
testcase_11 AC 45 ms
12,928 KB
testcase_12 AC 77 ms
18,680 KB
testcase_13 AC 35 ms
11,776 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = list(map(int,input().split()))
a = sorted(a)
b = True
z=[]
for i in range(N-1):
    #print(i-a[i]+1)
    if i-a[i]+1<0:
        b = False
        break
    z.append(i-a[i]+2)
if b:
    print("YES")
    for i in z:
        print(i)
else:
    print("NO")
0