数据太水,虽然我用的long long但实际用int也能过
|
|
错了好久。。。
|
|
题目 1425 [NOIP 2013PJ]表达式求值
2017-07-08 19:29:56
|
|
字符串长不止1e6
|
|
被标题吸引进来本来想写个递归下降分析然后.....看见只有+ *运算就直接暴力了...(stl大法好
|
|
有问题啊
各路神犇祝我一臂之力 var s:char; lc:boolean; temp,i,cj,ja,he:integer; begin assign(input,'expr.in'); reset(input); {assign(output,'expr.out'); rewrite(output); } cj:=1; while not eof do begin read(s); if (s>='0') and (s<='9') then temp:=(temp*10+(ord(s)-ord('0')))mod 10000 else begin if s='*' then begin cj:=cj*temp; lc:=false; end else begin if lc=true then begin ja:=ja+cj*temp; lc:=false; cj:=1; end else ja:=ja+temp; end; temp:=0; end; end; if lc=true then begin ja:=ja+cj*temp; lc:=false; cj:=1; end else ja:=ja+temp; writeln(50); close(input); close(output); end. |
|
=
题目 1425 [NOIP 2013PJ]表达式求值
2016-04-28 18:25:16
|
|
传说中的龅牙,啊呀呀。
题目 1425 [NOIP 2013PJ]表达式求值
2016-04-28 18:05:08
|
|
从这个角度,刚好可以扒下来楼上的龅牙。{我是那么的英明神武}
题目 1425 [NOIP 2013PJ]表达式求值
2016-04-28 18:02:21
|