結果

問題 No.222 引き算と足し算
ユーザー dnishdnish
提出日時 2017-05-14 23:57:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 475 bytes
コンパイル時間 1,395 ms
コンパイル使用メモリ 165,272 KB
実行使用メモリ 5,292 KB
最終ジャッジ日時 2023-10-14 11:01:01
合計ジャッジ時間 2,740 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 1 ms
4,348 KB
testcase_02 AC 2 ms
4,352 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 1 ms
4,348 KB
testcase_11 WA -
testcase_12 AC 2 ms
4,352 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
4,348 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1 ms
4,348 KB
testcase_20 WA -
testcase_21 AC 1 ms
4,348 KB
testcase_22 AC 2 ms
4,352 KB
testcase_23 WA -
testcase_24 AC 1 ms
4,348 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1 ms
4,352 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
4,348 KB
testcase_31 WA -
testcase_32 AC 2 ms
4,348 KB
testcase_33 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP(i,n,N) for(int i=(n);i<(int)N;i++)
#define p(s) cout<<(s)<<endl
using namespace std;

int main(){
	string s;
	cin>>s;
	s+='?';
	int tmp=0,ans=0;
	int minus=!isdigit(s[0]);
	char c='-';
	REP(i,minus,s.size()){
		if(isdigit(s[i])){
			tmp*=10;
			tmp+=s[i]-'0';
		}else{
			if(minus) tmp=-tmp;
			if(c=='-') ans+=tmp;
			else ans-=tmp;
			c=s[i];
			tmp=0;
			if(!isdigit(s[i+1])){
				minus=true;
				i++;
			}
		}
	}
	p(ans);
	return 0;
}
0