QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#203741#6749. Targetzzzyzzz#AC ✓0ms4128kbC++171.6kb2023-10-06 19:55:362023-10-06 19:55:38

Judging History

你现在查看的是最新测评结果

  • [2023-10-06 19:55:38]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:4128kb
  • [2023-10-06 19:55:36]
  • 提交

answer

#include<bits/stdc++.h>
#include<sstream>
#include<cassert>
#define fi first
#define se second
#define i128 __int128
using namespace std;
typedef long long ll;
typedef double db;
typedef pair<int,int> PII;
const double eps=1e-7;
const int N=5e5+7 ,M=5e5+7, INF=0x3f3f3f3f,mod=1e9+7,mod1=998244353;
const long long int llINF=0x3f3f3f3f3f3f3f3f;
inline ll read() {ll x=0,f=1;char c=getchar();while(c<'0'||c>'9') {if(c=='-') f=-1;c=getchar();}
while(c>='0'&&c<='9') {x=(ll)x*10+c-'0';c=getchar();} return x*f;}
inline void write(ll x) {if(x < 0) {putchar('-'); x = -x;}if(x >= 10) write(x / 10);putchar(x % 10 + '0');}
inline void write(ll x,char ch) {write(x);putchar(ch);}
void stin() {freopen("in_put.txt","r",stdin);freopen("my_out_put.txt","w",stdout);}
bool cmp0(int a,int b) {return a>b;}
template<typename T> T gcd(T a,T b) {return b==0?a:gcd(b,a%b);}
template<typename T> T lcm(T a,T b) {return a*b/gcd(a,b);}
void hack() {printf("\n----------------------------------\n");}

int T,hackT;
int n,m,k;

void get(vector<int> &vis,db x) {
	for(int i=1;i<=22;i++) {
		x*=2;;
		vis.push_back(x>=1);
		if(x>=1) x-=1;
	}
	reverse(vis.begin(),vis.end());
} 

void solve() {
	db a,b;
	scanf("%lf%lf",&a,&b);
	
	if(b==1.0) {
		printf("2\n");
		return ;
	}
	
	vector<int> vis;
	get(vis,b);
	
	for(int i=0;i<vis.size();i++) {
		if(vis[i]==0) printf("1");
		else printf("2");
	}
	printf("\n");
}   

int main() {
    // init();
    // stin();
	// ios::sync_with_stdio(false); 

    // scanf("%d",&T);
    T=1; 
    while(T--) hackT++,solve();
    
    return 0;       
}          

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3900kb

input:

0.5 0.25

output:

1111111111111111111121

result:

ok ok

Test #2:

score: 0
Accepted
time: 0ms
memory: 3816kb

input:

1 0.75

output:

1111111111111111111122

result:

ok ok

Test #3:

score: 0
Accepted
time: 0ms
memory: 3820kb

input:

1 0

output:

1111111111111111111111

result:

ok ok

Test #4:

score: 0
Accepted
time: 0ms
memory: 3984kb

input:

0.361954 0.578805

output:

1121121122121111212112

result:

ok ok

Test #5:

score: 0
Accepted
time: 0ms
memory: 3828kb

input:

0.144888 0.140086

output:

2212121122212222111211

result:

ok ok

Test #6:

score: 0
Accepted
time: 0ms
memory: 4120kb

input:

0.514397 0.969399

output:

1211121212121111122222

result:

ok ok

Test #7:

score: 0
Accepted
time: 0ms
memory: 3768kb

input:

0.887873 0.402213

output:

2212212221222212211221

result:

ok ok

Test #8:

score: 0
Accepted
time: 0ms
memory: 3944kb

input:

0.152004 0.176414

output:

2122212112121121221211

result:

ok ok

Test #9:

score: 0
Accepted
time: 0ms
memory: 4088kb

input:

0.401831 0.860762

output:

2112221212212111222122

result:

ok ok

Test #10:

score: 0
Accepted
time: 0ms
memory: 4112kb

input:

0.580629 0.869474

output:

1221222121211212222122

result:

ok ok

Test #11:

score: 0
Accepted
time: 0ms
memory: 3824kb

input:

0.138673 0.508844

output:

1221122211112112111112

result:

ok ok

Test #12:

score: 0
Accepted
time: 0ms
memory: 3828kb

input:

0.027182 0.263243

output:

2112222211122122111121

result:

ok ok

Test #13:

score: 0
Accepted
time: 0ms
memory: 3824kb

input:

0.081714 0.212216

output:

1211222211212112212211

result:

ok ok

Test #14:

score: 0
Accepted
time: 0ms
memory: 3984kb

input:

0.562775 0.388603

output:

2222212212222122111221

result:

ok ok

Test #15:

score: 0
Accepted
time: 0ms
memory: 4116kb

input:

0.112949 0.147503

output:

1111221211112221211211

result:

ok ok

Test #16:

score: 0
Accepted
time: 0ms
memory: 4128kb

input:

0.800247 0.150903

output:

2121122111121212211211

result:

ok ok

Test #17:

score: 0
Accepted
time: 0ms
memory: 3904kb

input:

0.300103 0.584619

output:

2121122112121221212112

result:

ok ok

Test #18:

score: 0
Accepted
time: 0ms
memory: 3812kb

input:

0.844720 0.070148

output:

1222112121222221112111

result:

ok ok

Test #19:

score: 0
Accepted
time: 0ms
memory: 4088kb

input:

0.573320 0.123035

output:

1222112222222122222111

result:

ok ok

Test #20:

score: 0
Accepted
time: 0ms
memory: 3820kb

input:

0.467281 0.231366

output:

2211221212221122122211

result:

ok ok

Test #21:

score: 0
Accepted
time: 0ms
memory: 3756kb

input:

0.264769 0.373434

output:

2221212112211222222121

result:

ok ok

Test #22:

score: 0
Accepted
time: 0ms
memory: 4112kb

input:

0.689729 0.570712

output:

2212111212211112112112

result:

ok ok

Test #23:

score: 0
Accepted
time: 0ms
memory: 3920kb

input:

0.747218 0.312573

output:

1211221121111111112121

result:

ok ok

Test #24:

score: 0
Accepted
time: 0ms
memory: 3920kb

input:

0.215052 0.203677

output:

2212111121121111212211

result:

ok ok

Test #25:

score: 0
Accepted
time: 0ms
memory: 3920kb

input:

0.607834 0.733102

output:

1121121122121222122212

result:

ok ok

Test #26:

score: 0
Accepted
time: 0ms
memory: 3884kb

input:

0.516860 0.252876

output:

1222211122221211111121

result:

ok ok

Test #27:

score: 0
Accepted
time: 0ms
memory: 3944kb

input:

0.955285 0.457773

output:

2221121111221121212221

result:

ok ok

Test #28:

score: 0
Accepted
time: 0ms
memory: 3832kb

input:

0.156178 0.353262

output:

1112212222122112122121

result:

ok ok

Test #29:

score: 0
Accepted
time: 0ms
memory: 4080kb

input:

0.398701 0.040258

output:

1221211222112112121111

result:

ok ok

Test #30:

score: 0
Accepted
time: 0ms
memory: 3880kb

input:

0.973859 0.000184

output:

2211111122111111111111

result:

ok ok

Test #31:

score: 0
Accepted
time: 0ms
memory: 3776kb

input:

0.882213 0.556709

output:

1222211121111212221112

result:

ok ok

Test #32:

score: 0
Accepted
time: 0ms
memory: 4056kb

input:

0.263822 0.460984

output:

2211112211111112212221

result:

ok ok

Test #33:

score: 0
Accepted
time: 0ms
memory: 3880kb

input:

0.443432 0.034841

output:

2121212212122211121111

result:

ok ok