repo.or.cz
/
and.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Adding some more judges, here and there.
[and.git]
/
NEERC
/
zero
/
zero_gk_c_2.c
blob
4661fbce5294ea8af6ac323e2798e46278c634aa
1
#include<stdio.h>
2
__int64 a
[
100000
];
3
int
i
,
n
;
4
5
int
main
() {
6
freopen
(
"zero.in"
,
"r"
,
stdin
);
7
freopen
(
"zero.out"
,
"w"
,
stdout
);
8
9
scanf
(
"%d"
, &
n
);
10
11
for
(
i
=
0
;
i
<
n
;
i
++) {
12
scanf
(
"%I64d"
,
a
+
i
);
13
}
14
15
for
(
i
=
n
-
1
;
i
>=
0
;
i
--) {
16
printf
(
"%I64d "
,
a
[
i
]);
17
}
18
19
fclose
(
stdin
);
20
fclose
(
stdout
);
21
return
0
;
22
}