QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#322126 | #8164. EX 中缀表达式 | HaccerKat# | 16 | 1ms | 3816kb | C++20 | 2.0kb | 2024-02-06 11:58:32 | 2024-07-04 03:22:44 |
Judging History
answer
#include "bits/stdc++.h"
using namespace std;
#ifdef DEBUG
#define dbg(x) cout << (#x) << " = " << (x) << "\n";
#else
#define dbg(x)
#endif
typedef long long ll;
typedef pair<int, int> pi;
const int N = 105;
const int M = 1;
const int inf = 1e9;
constexpr int mod = 998244353;
int n, m, k, qq;
int c[M];
string s;
void E() {
cout << "error\n";
exit(0);
}
int add(int x, int y) {
x += y;
if (x >= mod) x -= mod;
return x;
}
int mul(int x, int y) {
return (ll)x * y % mod;
}
int tonum(string t) {
int res = 0;
for (char c : t) {
int x = c - '0';
res = add(mul(res, 10), x);
}
return res;
}
void solve() {
cin >> m;
for (int i = 0; i < m; i++) {
cin >> c[i];
}
cin >> s;
n = s.size();
string x;
vector<int> vals;
string ops;
for (int i = 0; i < n; i++) {
if (s[i] == '+' || s[i] == '*') {
if (x.size() != 1) E();
if (x[0] != '1') E();
x.clear();
ops.push_back(s[i]);
}
else if (s[i] == '.') {
if (x.empty()) E();
vals.push_back(tonum(x));
x.clear();
}
else if (s[i] >= '0' || s[i] <= '9') x.push_back(s[i]);
else E();
}
if (!x.empty()) E();
if (vals.size() == ops.size()) E();
int sz = ops.size();
int out = 0;
if (!c[0]) {
out = vals[0];
for (int i = 0; i < sz; i++) {
if (ops[i] == '+') out = add(out, vals[i + 1]);
if (ops[i] == '*') out = mul(out, vals[i + 1]);
}
}
else {
out = vals[sz];
for (int i = sz - 1; i >= 0; i--) {
if (ops[i] == '+') out = add(out, vals[i]);
if (ops[i] == '*') out = mul(out, vals[i]);
}
}
cout << out << "\n";
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
solve();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 4
Accepted
time: 0ms
memory: 3588kb
input:
1 1 001.0+001.
output:
error
result:
ok single line: 'error'
Test #2:
score: 0
Wrong Answer
time: 0ms
memory: 3540kb
input:
1 1 002.001+003.001*004.001+005.
output:
error
result:
wrong answer 1st lines differ - expected: '29', found: 'error'
Test #3:
score: 4
Accepted
time: 0ms
memory: 3584kb
input:
1 1 (1.)()
output:
error
result:
ok single line: 'error'
Test #4:
score: 0
Wrong Answer
time: 0ms
memory: 3480kb
input:
1 1 ((((002.001+003.)001*004.001+(((005.))))))
output:
error
result:
wrong answer 1st lines differ - expected: '45', found: 'error'
Test #5:
score: 4
Accepted
time: 0ms
memory: 3816kb
input:
1 1 1
output:
error
result:
ok single line: 'error'
Test #6:
score: 0
Wrong Answer
time: 0ms
memory: 3524kb
input:
1 0 000.001^000.001^001737356566464562245456526656565575.001^005985558448484954556451.
output:
0
result:
wrong answer 1st lines differ - expected: '1', found: '0'
Test #7:
score: 0
Wrong Answer
time: 0ms
memory: 3544kb
input:
1 0 005656646456224545652665.001^00848495.001^00173736565575.001^005985558444556451.
output:
769686975
result:
wrong answer 1st lines differ - expected: '707709398', found: '769686975'
Test #8:
score: 0
Wrong Answer
time: 1ms
memory: 3612kb
input:
1 1 001737356566464562245456526656565575.001^005985558448484954556451.001^000.001^000.
output:
368645612
result:
wrong answer 1st lines differ - expected: '64025176', found: '368645612'
Test #9:
score: 0
Wrong Answer
time: 0ms
memory: 3816kb
input:
1 1 0017373575.001^005985558448484954556451.001^0054565266565.001^00656646456224655.
output:
17373575
result:
wrong answer 1st lines differ - expected: '563281323', found: '17373575'
Test #10:
score: 4
Accepted
time: 0ms
memory: 3528kb
input:
1 1 ((((1^))))
output:
error
result:
ok single line: 'error'
Test #11:
score: 0
Wrong Answer
time: 0ms
memory: 3592kb
input:
1 1 ((((((((((((2.1^02.))01^3.01^02.))01^((03.01^03.))1^03.1^3.))01^((((02.1^3.))1^2.01^03.))01^((03.01^2.))1^02.1^03.))01^((((((3.01^02.))01^03.1^02.))1^((3.1^2.))1^2.1^03.))01^((((2.01^03.))01^2.01^2.))01^((02.1^2.))1^02.01^2.))1^((((((((2.1^2.))01^03.1^3.))1^((3.1^00.))1^2.1^2.))01^((((3.01^02.))...
output:
-521169766
result:
wrong answer 1st lines differ - expected: '393739719', found: '-521169766'
Test #12:
score: 0
Wrong Answer
time: 0ms
memory: 3604kb
input:
1 1 ((((((((((((3.1^02.))1^03.1^03.))1^((1.1^3.))1^02.01^02.))01^((((2.01^1.))01^03.1^2.))1^((02.01^03.))01^03.1^02.))1^((((((02.1^03.))1^02.1^3.))01^((02.01^2.))01^2.1^02.))01^((((03.01^3.))1^3.1^3.))1^((3.1^02.))01^3.01^03.))01^((((((((01.1^2.))1^2.1^02.))01^((02.01^2.))01^3.1^3.))01^((((3.01^02.)...
output:
-521169765
result:
wrong answer 1st lines differ - expected: '206923682', found: '-521169765'
Test #13:
score: 0
Wrong Answer
time: 0ms
memory: 3816kb
input:
1 0 02.1^02.1^((3.01^02.))01^((3.01^01.1^((3.01^02.))))1^((3.01^02.01^((3.01^3.))01^((03.1^02.1^((2.1^03.))))))1^((03.1^02.1^((03.01^00.))1^((01.01^3.1^((2.01^02.))))01^((1.01^03.1^((02.1^02.))01^((03.01^03.01^((0.01^2.))))))))1^((03.01^03.1^((3.1^02.))01^((2.01^2.1^((3.01^01.))))01^((2.1^02.1^((2.1...
output:
error
result:
wrong answer 1st lines differ - expected: '336183747', found: 'error'
Test #14:
score: 0
Wrong Answer
time: 0ms
memory: 3528kb
input:
1 1 ((((((((((((03.1^02.))01^03.1^3.))1^((3.1^03.))01^3.1^02.))1^((((2.1^02.))01^2.01^2.))1^((03.1^03.))1^2.01^0.))01^((((((02.01^2.))01^2.1^2.))01^((03.1^2.))01^3.1^02.))1^((((03.1^03.))01^02.1^3.))01^((02.1^03.))1^03.1^03.))1^((((((((03.1^02.))1^2.1^02.))01^((03.01^2.))01^03.1^03.))1^((((2.01^2.))...
output:
-220475912
result:
wrong answer 1st lines differ - expected: '737081821', found: '-220475912'
Test #15:
score: 0
Wrong Answer
time: 0ms
memory: 3736kb
input:
1 0 1.1^2.1^((2.01^02.))1^((2.01^02.01^((2.1^02.))))01^((03.01^2.01^((3.01^02.))01^((02.1^03.1^((3.01^02.))))))01^((03.01^02.1^((01.1^03.))01^((2.01^3.01^((3.1^03.))))1^((03.01^2.1^((03.01^3.))1^((2.01^2.01^((03.1^2.))))))))01^((2.01^02.01^((03.01^03.))1^((3.1^3.1^((03.01^03.))))01^((3.01^3.01^((03....
output:
error
result:
wrong answer 1st lines differ - expected: '1', found: 'error'
Test #16:
score: 0
Wrong Answer
time: 0ms
memory: 3616kb
input:
9 100011111 ((((((((3.03*02.))9^3.09*03.4+((02.3+2.01*03.3+2.))2^((03.3^3.1+03.1+3.))8+((2.09*03.3+((02.03*3.))))))08*((((((3.04^03.))09*((02.2+03.))01+((3.4+03.))9*((3.7*03.))))6*((03.08^03.6*02.06^2.5*((01.05+2.03^03.09+02.))))))))08+((((03.5*2.02^03.06^2.01*2.09+03.6+((2.3^2.))))8^((((3.5^02.))6*...
output:
error
result:
wrong answer 1st lines differ - expected: '203844826', found: 'error'
Test #17:
score: 0
Wrong Answer
time: 0ms
memory: 3528kb
input:
9 010010100 ((((((((((02.06*2.03^((02.2+3.))))09^((((03.2^03.))03+02.05+03.))1+((02.08^00.3*2.4+03.1^((03.6^2.))9^((3.1+02.))))))9^((((((03.3+03.03*((03.1+01.))))7^((02.03^03.))09+((02.09+03.))))09*((((03.7^1.4+02.05+2.))9*((02.06*2.5*((03.03^3.))))))))03*((((((02.4+03.))7+((2.06^3.))))7^((01.01*02....
output:
error
result:
wrong answer 1st lines differ - expected: '473638651', found: 'error'
Test #18:
score: 0
Wrong Answer
time: 0ms
memory: 3480kb
input:
9 111101110 ((((((((((((2.2*03.))03*3.03+2.))08+((((02.07^02.))07+((3.04*02.))))07+((((2.1+3.))8+3.8+03.1^((03.01+03.))06*((03.3+02.))))1*((2.4+02.3+2.9+2.))08+((3.3*03.))9*((2.02^02.))7+((((02.02*3.))06^02.7^01.))07+((((2.01^02.))2+01.8+03.))))3*((((((3.5+2.))08^((02.6+03.))02^3.07^3.5^03.6^2.))3+(...
output:
error
result:
wrong answer 1st lines differ - expected: '1', found: 'error'
Test #19:
score: 0
Wrong Answer
time: 0ms
memory: 3596kb
input:
9 111011011 ((((((((3.08*2.07*((02.1*3.))07+((3.2*02.01^3.8^2.))))8^((((2.09*3.2^03.04+02.))4+((03.06*02.4+((00.01*02.))))))))8^((((3.06^2.))09^03.9^02.03^((0.4+03.02*2.05^00.))))9^((((03.1^02.))6+((02.01^3.))01+((02.03*02.))07+2.9+2.))01*((((02.6*02.4*02.8*2.))6*((03.2^02.))09^((3.7+2.))))08+((((03...
output:
error
result:
wrong answer 1st lines differ - expected: '788040634', found: 'error'
Test #20:
score: 0
Wrong Answer
time: 0ms
memory: 3484kb
input:
9 100110101 ((((((((3.5*3.))7^((2.3+3.))05+2.8^2.05^3.8*2.))7^03.08*02.8^((2.7+00.))08*((2.2^2.))09+((2.7*2.))06+((((((03.08*3.1*02.4+03.))1+02.03*2.2^3.05*02.))01*((2.7+02.01+02.02+02.))9*((03.02+03.1^0.03^3.))))05*((((((((02.01*02.))5*03.06+3.))5+((2.04*2.1*3.1+02.))02^((((03.7*03.01+2.01^3.))1+2....
output:
error
result:
wrong answer 1st lines differ - expected: '151078698', found: 'error'
Test #21:
score: 0
Wrong Answer
time: 0ms
memory: 3516kb
input:
9 010011011 ((((((((3.5^3.4+02.06+02.))09*((2.05^03.01*2.6*02.))03^((2.07+02.5*((03.04^0.))01+((02.4+03.))07+2.09^03.))))06+((((((02.1^2.))03^2.06^3.))7^((((2.01*02.))6*03.9*2.))04+((((3.05+2.01+3.7+2.))02+3.04*02.4^03.7+2.))))05+((((((02.07+3.))9+((3.08*2.))5*((2.8+02.02^((3.01*02.))))))08*((((02.0...
output:
error
result:
wrong answer 1st lines differ - expected: '926442773', found: 'error'
Test #22:
score: 0
Wrong Answer
time: 0ms
memory: 3808kb
input:
9 010111110 ((((((((2.09+2.7*((3.03^03.))02^((03.01*03.))3*03.6^03.))04+((((02.03*3.))06+((3.01^02.))))9*((((03.4*3.))09^((03.1+2.))))))06*((03.7+02.06^((2.5*03.))1+((00.09+3.1*2.9+2.))))7+((03.8^02.3^2.06^3.))08^((3.8^02.04+3.7*03.))04^((((2.07+3.5^((02.01^03.))))05*((03.01+03.))7^3.09^3.))09^((((2...
output:
error
result:
wrong answer 1st lines differ - expected: '482698727', found: 'error'
Test #23:
score: 0
Wrong Answer
time: 0ms
memory: 3608kb
input:
9 101011110 ((((((((3.9+01.09^((03.6^03.))05+((2.06^3.03+((00.1*03.))))))8^((02.6+02.02*03.6*02.02^((2.07+02.))7+((3.04+02.))))1*((((02.06+03.))8+((2.7+0.))01*((02.3*3.))9^((02.1^2.))))8^((((2.6^02.))8^((3.1+0.))7*((02.6*02.))8*((3.07+2.))))))05*((((03.4^2.03^((03.2*02.))))05*2.07+03.6+3.06+2.1^((2....
output:
error
result:
wrong answer 1st lines differ - expected: '665120433', found: 'error'
Test #24:
score: 0
Wrong Answer
time: 0ms
memory: 3420kb
input:
9 101010100 ((((((((((03.08+02.03+2.9^2.))9^((2.9+3.04+((02.2*02.))))2^((2.05+3.))6+3.7^2.3^2.7+03.3+3.9*3.))09*((((3.9*3.7*3.7*3.))9^((((03.04+03.))07^2.08*1.))3*03.8+02.04+((02.4+2.))04+((2.5+02.))6*((02.01+3.))))4*((((03.04+2.))08*((03.07^03.))03^2.07*3.05^((3.04*02.))2+((03.5^3.3*((03.2*3.))))03...
output:
error
result:
wrong answer 1st lines differ - expected: '487727059', found: 'error'
Test #25:
score: 0
Wrong Answer
time: 0ms
memory: 3580kb
input:
9 010000001 ((((((((2.05^03.4+((03.02^2.))))06^((((2.3+03.))06+((2.06*03.))))))8^((((((02.04^03.))07^((2.7+03.))))08+((3.06+03.))9^((2.02^3.))))3*((2.05^2.01^2.09^03.))07*((2.6*2.2+3.6+2.))04+((((02.05*2.02^02.02+02.))02^2.07^3.06+((3.6+3.))))01^((((((((2.01^02.))2^2.07^03.))8*((03.6*3.6^02.09^3.)))...
output:
error
result:
wrong answer 1st lines differ - expected: '529906102', found: 'error'