結果
問題 | No.1373 Directed Operations |
ユーザー | zumin |
提出日時 | 2021-02-23 21:46:22 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 429 bytes |
コンパイル時間 | 641 ms |
コンパイル使用メモリ | 75,516 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 15:59:35 |
合計ジャッジ時間 | 5,114 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 152 ms
6,944 KB |
testcase_03 | WA | - |
testcase_04 | AC | 32 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 169 ms
6,944 KB |
testcase_07 | AC | 6 ms
6,944 KB |
testcase_08 | AC | 20 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 31 ms
6,944 KB |
testcase_13 | AC | 5 ms
6,944 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main(){ int n; cin>>n; vector<int> a(n-1); for(int i=1;i<n;i++) cin>>a[i-1]; sort(a.begin(),a.end()); for(int i=1;i<n;i++){ if(a[i-1]>i+1){ cout<<"NO"<<endl; return 0; } } cout<<"YES"<<endl; for(int i=1;i<n;i++){ cout<<i+1-a[i-1]<<endl; } return 0; }