QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#611851 | #6736. Alice and Bob | xiaofanger | WA | 0ms | 3820kb | C++17 | 625b | 2024-10-04 23:15:45 | 2024-10-04 23:15:47 |
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(50);
for(int i = 0 ; i < 25 ; i++){
b *= 2;
if(b >= 1) B[i] = 1 , b--;
else B[i] = 0;
}
for(int i = 0 ; i < 25 ; i++) cout << B[i];
cout << '\n';
//for(int i = 0 ; i < 25 ;i++) cout << 1;
for(int i = 24 ; i >= 0 ; i--){
if(B[i]) cout << 2;
else cout << 1;
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int __ = 1;
//cin >> __;
while(__--){
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3820kb
input:
1
output:
0000000000000000000000000 1111111111111111111111111
result:
wrong output format Expected integer, but "0000000000000000000000000" found