ForeverAggregrate/CodeForces
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Sorry, we had to truncate this directory to 1,000 files. 11 entries were omitted from the list. | ||||
Repository files navigation
#include <cstdio>
int main(){
long n; scanf("%ld", &n);
for(long p = 0; p < n; p++){long x; scanf("%ld", &x); printf("%ld ", (n + 1 - x));}
puts("");
return 0;
}