QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#611761 | #6749. Target | xiaofanger | WA | 1ms | 3644kb | C++17 | 793b | 2024-10-04 22:35:17 | 2024-10-04 22:35:24 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define ll long long
void solve() {
double a , b;
cin >> a >> b;
vector<int> B(5);
for(int i = 0 ; i < 5 ; i++){
cout << 1;
b *= 2;
if(b >= 1) B[i] = 1 , b--;
else B[i] = 0;
}
// cout << '\n';
// for(int i = 0 ; i < 5 ; i++) cout << B[i] << ' ';
// cout << '\n';
int cnt = 0;
for(int i = 4 ; i >= 0 ; i--){
if(B[i]) cnt++;
else {
for(int j = 0 ; j < cnt ; j++) cout << 2;
for(int j = 0 ; j <= i && cnt ; j++) cout << 1;
cnt = 0;
}
}
if(cnt){
for(int j = 0 ; j < cnt ; j++) cout << 2;
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int __ = 1;
//cin >> __;
while(__--){
solve();
}
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3644kb
input:
0.5 0.25
output:
1111121
result:
wrong answer wa