ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#122359 | #1127. 整数逆序输出 | wust202013407213d | 100 | 0ms | 508kb | C | 368b | 2020-11-15 09:55:28 | 2020-11-15 09:55:29 |
answer
详细
小提示:点击横条可展开更详细的信息
Test #1:
score: 10
Accepted
time: 0ms
memory: 508kb
input:
3907
output:
7 0 9 3
result:
ok single line: '7 0 9 3'
Test #2:
score: 10
Accepted
time: 0ms
memory: 504kb
input:
8171
output:
1 7 1 8
result:
ok single line: '1 7 1 8'
Test #3:
score: 10
Accepted
time: 0ms
memory: 508kb
input:
16268
output:
8 6 2 6 1
result:
ok single line: '8 6 2 6 1'
Test #4:
score: 10
Accepted
time: 0ms
memory: 508kb
input:
23369
output:
9 6 3 3 2
result:
ok single line: '9 6 3 3 2'
Test #5:
score: 10
Accepted
time: 0ms
memory: 508kb
input:
24363
output:
3 6 3 4 2
result:
ok single line: '3 6 3 4 2'
Test #6:
score: 10
Accepted
time: 0ms
memory: 504kb
input:
12345678
output:
8 7 6 5 4 3 2 1
result:
ok single line: '8 7 6 5 4 3 2 1'
Test #7:
score: 10
Accepted
time: 0ms
memory: 504kb
input:
87654321
output:
1 2 3 4 5 6 7 8
result:
ok single line: '1 2 3 4 5 6 7 8'
Test #8:
score: 10
Accepted
time: 0ms
memory: 504kb
input:
-123456
output:
6 5 4 3 2 1
result:
ok single line: '6 5 4 3 2 1'
Test #9:
score: 10
Accepted
time: 0ms
memory: 504kb
input:
-8876
output:
6 7 8 8
result:
ok single line: '6 7 8 8'
Test #10:
score: 10
Accepted
time: 0ms
memory: 508kb
input:
0
output:
0
result:
ok single line: '0'