結果

問題 No.1373 Directed Operations
ユーザー 👑 KazunKazun
提出日時 2021-02-05 21:37:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 291 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 94,436 KB
最終ジャッジ日時 2024-07-02 11:48:57
合計ジャッジ時間 4,328 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,640 KB
testcase_01 AC 37 ms
53,184 KB
testcase_02 AC 105 ms
93,460 KB
testcase_03 AC 65 ms
85,024 KB
testcase_04 AC 67 ms
86,164 KB
testcase_05 AC 37 ms
53,204 KB
testcase_06 AC 279 ms
91,920 KB
testcase_07 AC 57 ms
66,668 KB
testcase_08 AC 72 ms
70,464 KB
testcase_09 AC 167 ms
91,976 KB
testcase_10 AC 141 ms
87,632 KB
testcase_11 AC 64 ms
67,552 KB
testcase_12 AC 133 ms
83,500 KB
testcase_13 AC 51 ms
62,364 KB
testcase_14 AC 291 ms
92,004 KB
testcase_15 AC 261 ms
91,892 KB
testcase_16 AC 289 ms
91,772 KB
testcase_17 AC 124 ms
94,436 KB
testcase_18 AC 82 ms
85,728 KB
testcase_19 AC 139 ms
83,928 KB
testcase_20 AC 178 ms
87,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
N=int(input())
M=map(int,input().split())
A=[]
for i,a in enumerate(M,1):
    A.append((i,a))

A.sort(key=lambda x:x[1])
X=[]
for i,(k,a) in enumerate(A,1):
    if i<a:
        print("NO")
        exit()

    X.append((k,i-a+1))

print("YES")
X.sort(key=lambda x:x[0])
for k,x in X:
    print(x)
0