結果

問題 No.1373 Directed Operations
ユーザー KazunKazun
提出日時 2021-02-05 21:36:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 318 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 94,136 KB
最終ジャッジ日時 2024-07-02 11:48:43
合計ジャッジ時間 4,991 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,136 KB
testcase_02 WA -
testcase_03 AC 61 ms
85,164 KB
testcase_04 AC 62 ms
86,556 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 152 ms
91,896 KB
testcase_10 AC 121 ms
87,600 KB
testcase_11 AC 55 ms
68,356 KB
testcase_12 AC 119 ms
83,516 KB
testcase_13 AC 46 ms
62,860 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

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))

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