QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#471267 | #9107. Zayin and Count | real_sigma_team# | WA | 16ms | 3564kb | C++23 | 1.1kb | 2024-07-10 20:13:16 | 2024-07-10 20:13:17 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#ifdef lisie_bimbi
#else
#define endl '\n'
#endif
//#define int long long
#pragma GCC optimize("O2")
void solve(){
int a1 = -1, a2 = -1, b1 = -1, b2 = -1;
for(int i = 0; i < 10; i++){
int a;
cin >> a;
if(a){
a = i;
}
if(a > a1){
a2 = a1;
a1 = a;
}else if(a > a2){
a2 = a;
}
}
for(int i = 0; i < 10; i++){
int b;
cin >> b;
if(b){
b = i;
}
if(b > b1){
b2 = b1;
b1 = b;
}else if(b > b2){
b2 = b;
}
}
string s;
cin >> s;
for(auto i : s){
if(i - '0' == a1){
cout << b1;
}else{
cout << b2;
}
}
cout << endl;
}
signed main(){
#ifdef lisie_bimbi
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#else
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
#endif
int t;
cin >> t;
while(t--){
solve();
}
}
详细
Test #1:
score: 0
Wrong Answer
time: 16ms
memory: 3564kb
input:
10000 1 0 0 0 1 1 0 0 0 1 0 0 1 0 1 1 1 1 0 0 950595954440050004054505054050 1 0 0 0 1 1 1 1 0 0 1 1 1 0 1 0 0 0 1 1 45467007076660767550460064 1 1 1 1 0 0 0 1 0 0 1 1 0 1 1 0 1 0 0 1 23373171320213300170200722 0 0 0 0 1 1 1 0 1 0 0 0 1 0 0 1 0 1 1 1 558565664666565565558468668484 1 1 0 0 1 0 1 0 1 ...
output:
766676766666666666666666666666 88889889898888989888888888 66696696666666666696666966 889888888888888888889889889898 77877878777777777777778777 666666666766766666776666666667 866866686668688668666666666666 565555556655555655655555655555 77777878777777787777777777 696666666666666669666 668866666666868...
result:
wrong answer 1st lines differ - expected: '52755244567262766742575722', found: '766676766666666666666666666666'