Submission #1185248


Source Code Expand

#include<bits/stdc++.h>
using namespace std;
const int mod = 1e9 + 7;
 
int main()
{
  long long  N, a[100000], b[100000];
  cin >> N;
  for(long long  i = 0; i < N; i++) {
    cin >> a[i];
    b[i] = i + 1;
  }
  sort(b, b + N, [&](long long  x, long long  y) {
      return(a[x - 1] > a[y - 1]);
    });
  for( long long i = 0; i < N; i++) {
    cout << b[i] << endl;
  }
}

Submission Info

Submission Time
Task C - 背の順
User AMeararEX
Language C++14 (GCC 5.4.1)
Score 100
Code Size 393 Byte
Status AC
Exec Time 203 ms
Memory 2432 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 3 ms 256 KB
1_15.txt AC 2 ms 256 KB
2_00.txt AC 182 ms 2432 KB
2_01.txt AC 178 ms 2432 KB
2_02.txt AC 193 ms 2432 KB
2_03.txt AC 192 ms 2432 KB
2_04.txt AC 202 ms 2432 KB
2_05.txt AC 200 ms 2432 KB
2_06.txt AC 203 ms 2432 KB
2_07.txt AC 197 ms 2432 KB
2_08.txt AC 150 ms 1792 KB
2_09.txt AC 184 ms 2176 KB
2_10.txt AC 58 ms 896 KB
2_11.txt AC 162 ms 1920 KB