結果
問題 | No.1373 Directed Operations |
ユーザー | NoaSaber |
提出日時 | 2021-03-07 17:20:31 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 277 bytes |
コンパイル時間 | 380 ms |
コンパイル使用メモリ | 82,408 KB |
実行使用メモリ | 102,636 KB |
最終ジャッジ日時 | 2024-10-08 23:27:06 |
合計ジャッジ時間 | 7,255 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 37 ms
51,840 KB |
testcase_02 | WA | - |
testcase_03 | AC | 70 ms
91,136 KB |
testcase_04 | AC | 73 ms
93,568 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 172 ms
97,920 KB |
testcase_10 | AC | 153 ms
95,600 KB |
testcase_11 | AC | 68 ms
68,608 KB |
testcase_12 | AC | 134 ms
89,216 KB |
testcase_13 | AC | 51 ms
62,976 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
N=int(input()) a=list(map(int,input().split())) a=[(i+1,j) for i,j in enumerate(a)] a.sort(key=lambda x:x[1]) ans=[] for j,i in enumerate(a): if i[1]>j+1: print("NO") exit() else: ans.append((i[0],j+2-i[1])) ans.sort() for i,j in ans: print(j)