Submission #3772293


Source Code Expand

#include <bits/stdc++.h>

#define be(v) (v).begin(),(v).end()
#define pb(q) push_back(q)
typedef long long ll;
using namespace std;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    vector<pair<ll,ll> > v;
    ll n,a;
    cin>>n;
    for(int i=0;i<n;i++){
        cin>>a;
        v.pb(make_pair(a,i+1));
    }
    sort(be(v));
    reverse(be(v));
    for(int i=0;i<n;i++){
        cout << v[i].second<<endl;
    }
    return 0;
}

Submission Info

Submission Time
Task C - 背の順
User shinchan
Language C++14 (GCC 5.4.1)
Score 100
Code Size 473 Byte
Status AC
Exec Time 168 ms
Memory 2544 KB

Judge Result

Set Name Sample Subtask1 All
Score / Max Score 0 / 0 30 / 30 70 / 70
Status
AC × 3
AC × 19
AC × 31
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
Subtask1 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt, 2_00.txt, 2_01.txt, 2_02.txt, 2_03.txt, 2_04.txt, 2_05.txt, 2_06.txt, 2_07.txt, 2_08.txt, 2_09.txt, 2_10.txt, 2_11.txt
Case Name Status Exec Time Memory
0_00.txt AC 1 ms 256 KB
0_01.txt AC 1 ms 256 KB
0_02.txt AC 1 ms 256 KB
1_00.txt AC 1 ms 256 KB
1_01.txt AC 1 ms 256 KB
1_02.txt AC 1 ms 256 KB
1_03.txt AC 1 ms 256 KB
1_04.txt AC 3 ms 256 KB
1_05.txt AC 3 ms 256 KB
1_06.txt AC 3 ms 256 KB
1_07.txt AC 3 ms 256 KB
1_08.txt AC 3 ms 256 KB
1_09.txt AC 3 ms 256 KB
1_10.txt AC 3 ms 256 KB
1_11.txt AC 3 ms 256 KB
1_12.txt AC 3 ms 256 KB
1_13.txt AC 3 ms 256 KB
1_14.txt AC 2 ms 256 KB
1_15.txt AC 1 ms 256 KB
2_00.txt AC 157 ms 2544 KB
2_01.txt AC 158 ms 2544 KB
2_02.txt AC 159 ms 2544 KB
2_03.txt AC 158 ms 2544 KB
2_04.txt AC 164 ms 2544 KB
2_05.txt AC 168 ms 2544 KB
2_06.txt AC 166 ms 2544 KB
2_07.txt AC 166 ms 2544 KB
2_08.txt AC 127 ms 2420 KB
2_09.txt AC 151 ms 2420 KB
2_10.txt AC 51 ms 1020 KB
2_11.txt AC 134 ms 2420 KB