Gravatar

积分:6
提交:5 / 26
1111

Gravatar
music
积分:30
提交:24 / 34
回复 @father :
just so so

Gravatar
father
积分:79
提交:35 / 85
so easy

Gravatar
夜莺
积分:1195
提交:424 / 1048
我当年居然1A!

Gravatar
锝镆氪锂铽
积分:942
提交:367 / 832
零次项为零输出了个+0xswl

Gravatar
大帅哥老赵
积分:62
提交:25 / 97
注意细节!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Gravatar
fate1
积分:250
提交:110 / 306
好恶心。。。

Gravatar
Zwoi_John Price
积分:242
提交:127 / 396
一次方。。。真的很坑。。。

Gravatar
Hakurou!
积分:541
提交:160 / 495
注意细节..(什么细节自己WA了就知道了我才不会说呢哈哈哈)
同为6次

Gravatar
安呐一条小咸鱼。
积分:1941
提交:751 / 1825
细节懒得处理,知道有错也交代码是什么心态。=-=
这种细节题就是我的克星·-· 。。 交了6次。。

Gravatar
Skywalker
积分:538
提交:171 / 409
认真读题。。。。

Gravatar
乌龙猹
积分:1288
提交:469 / 784
X^1好黑、、

Gravatar
农场主
积分:1776
提交:364 / 939
program poly;
var
n,i,a:longint;
begin
assign(input,'poly.in');
reset(input);
assign(output,'poly.out');
rewrite(output);
readln(n);
for i:=1 to n+1 do
begin
read(a);
if a=0 then continue;
if (a<0)and(a<>-1) then write(a);
if a=-1 then write('-');
if (a>0)and(a<>1) then begin if i>1 then write('+');
write(a); end;
if a=1 then begin if i>1 then write('+'); if n-i+1=0 then write(a);
end;
if n-i+1>1 then begin write('x^'); write(n-i+1); end;
if n-i+1=1 then write('x');
end;
if a=-1 then write('1');!!!!!!!
close(input);
close(output);
end.回复 @BonnenuIt゛浅时 - :

Gravatar
BonnenuIt゛浅时光 -
积分:28
提交:18 / 27
program poly;
var
n,i,a:longint;
begin
assign(input,'poly.in');
reset(input);
assign(output,'poly.out');
rewrite(output);
readln(n);
for i:=1 to n+1 do
begin
read(a);
if a=0 then continue;
if (a<0)and(a<>-1) then write(a);
if a=-1 then write('-');
if (a>0)and(a<>1) then begin if i>1 then write('+');
write(a); end;
if a=1 then begin if i>1 then write('+'); if n-i+1=0 then write(a);
end;
if n-i+1>1 then begin write('x^'); write(n-i+1); end;
if n-i+1=1 then write('x');
end;
close(input);
close(output);
end.