QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#243218#6749. Targetcurtain_cppAC ✓1ms3712kbC++202.5kb2023-11-07 22:17:432023-11-07 22:17:43

Judging History

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

  • [2023-11-07 22:17:43]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3712kb
  • [2023-11-07 22:17:43]
  • 提交

answer

#include <iostream>
#include <algorithm>
#include <cstring>
#include <string>
#include <vector>
#include <map>
#include <cmath>
#include <queue>
#include <set>
#include <stack>
#include <unordered_map>
#include <numeric>
# include<bitset>
using namespace std;
typedef long long  LL;
typedef unsigned long long uLL;
typedef pair<LL,LL> PII;
const int N = 2e5+10;
const int inf = 0x3f3f3f3f;
const double pi = acos(-1);
#define debug(x) cout<<"[debug]"#x<<"="<<x<<'\n';
template <int T>
struct ModInt {
    const static int MD = T;
    int x;
    ModInt(LL x = 0)
        : x(x % MD) {}
    int get() { return x; }
    ModInt operator+(const ModInt& that) const {
        int x0 = x + that.x;
        return ModInt(x0 < MD ? x0 : x0 - MD);
    }
    ModInt operator-(const ModInt& that) const {
        int x0 = x - that.x;
        return ModInt(x0 < MD ? x0 + MD : x0);
    }
    ModInt operator*(const ModInt& that) const {
        return ModInt((long long)x * that.x % MD);
    }
    ModInt operator/(const ModInt& that) const {
        return *this * that.inverse();
    }
    void operator+=(const ModInt& that) {
        x += that.x;
        if (x >= MD)
            x -= MD;
    }
    void operator-=(const ModInt& that) {
        x -= that.x;
        if (x < 0)
            x += MD;
    }
    void operator*=(const ModInt& that) { x = (long long)x * that.x % MD; }
    void operator/=(const ModInt& that) { *this = *this / that; }
    ModInt inverse() const {
        int a = x, b = MD, u = 1, v = 0;
        while (b) {
            int t = a / b;
            a -= t * b;
            std::swap(a, b);
            u -= t * v;
            std::swap(u, v);
        }
        if (u < 0)
            u += MD;
        return u;
    }
    friend ostream& operator<<(ostream& os, ModInt x) {
        os << x.get();
        return os;
    }
};//全局变量记得清零!
const int mod=998244353;
typedef ModInt<mod> mint;
LL gcd(LL a, LL b)
{
   return b ? gcd(b, a % b) : a;
}
void solve()
{
  double a,b;
    cin>>a>>b;
    for(int i=0;i<=(1<<14);i++){
         vector<int>v;double temp=0;
         for(int j=0;j<14;j++){
               if(i>>j&1){
                   temp=(temp+1)/2;
               }else{
                  temp/=2;
               }
         }
         if(abs(temp-b)<=0.0001){
             for(int j=0;j<14;j++){
                 cout<<(i>>j&1)+1;
             }
             return;
         }
    }
}
int main()
{
   ios::sync_with_stdio(0); cin.tie(0),cout.tie(0);
   solve();
}


Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3528kb

input:

0.5 0.25

output:

22222222222211

result:

ok ok

Test #2:

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

input:

1 0.75

output:

22222222222212

result:

ok ok

Test #3:

score: 0
Accepted
time: 1ms
memory: 3532kb

input:

1 0

output:

11111111111111

result:

ok ok

Test #4:

score: 0
Accepted
time: 1ms
memory: 3576kb

input:

0.361954 0.578805

output:

12121111212112

result:

ok ok

Test #5:

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

input:

0.144888 0.140086

output:

12212222111211

result:

ok ok

Test #6:

score: 0
Accepted
time: 1ms
memory: 3712kb

input:

0.514397 0.969399

output:

21121111122222

result:

ok ok

Test #7:

score: 0
Accepted
time: 1ms
memory: 3596kb

input:

0.887873 0.402213

output:

21222212211221

result:

ok ok

Test #8:

score: 0
Accepted
time: 1ms
memory: 3528kb

input:

0.152004 0.176414

output:

21121121221211

result:

ok ok

Test #9:

score: 0
Accepted
time: 1ms
memory: 3536kb

input:

0.401831 0.860762

output:

12212111222122

result:

ok ok

Test #10:

score: 0
Accepted
time: 1ms
memory: 3600kb

input:

0.580629 0.869474

output:

11211212222122

result:

ok ok

Test #11:

score: 0
Accepted
time: 1ms
memory: 3536kb

input:

0.138673 0.508844

output:

11112112111112

result:

ok ok

Test #12:

score: 0
Accepted
time: 1ms
memory: 3600kb

input:

0.027182 0.263243

output:

11122122111121

result:

ok ok

Test #13:

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

input:

0.081714 0.212216

output:

11212112212211

result:

ok ok

Test #14:

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

input:

0.562775 0.388603

output:

12222122111221

result:

ok ok

Test #15:

score: 0
Accepted
time: 1ms
memory: 3664kb

input:

0.112949 0.147503

output:

11112221211211

result:

ok ok

Test #16:

score: 0
Accepted
time: 1ms
memory: 3532kb

input:

0.800247 0.150903

output:

22211212211211

result:

ok ok

Test #17:

score: 0
Accepted
time: 1ms
memory: 3700kb

input:

0.300103 0.584619

output:

21121221212112

result:

ok ok

Test #18:

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

input:

0.844720 0.070148

output:

11222221112111

result:

ok ok

Test #19:

score: 0
Accepted
time: 1ms
memory: 3704kb

input:

0.573320 0.123035

output:

22222122222111

result:

ok ok

Test #20:

score: 0
Accepted
time: 1ms
memory: 3592kb

input:

0.467281 0.231366

output:

12221122122211

result:

ok ok

Test #21:

score: 0
Accepted
time: 1ms
memory: 3576kb

input:

0.264769 0.373434

output:

21211222222121

result:

ok ok

Test #22:

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

input:

0.689729 0.570712

output:

21211112112112

result:

ok ok

Test #23:

score: 0
Accepted
time: 1ms
memory: 3540kb

input:

0.747218 0.312573

output:

11111111112121

result:

ok ok

Test #24:

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

input:

0.215052 0.203677

output:

11121111212211

result:

ok ok

Test #25:

score: 0
Accepted
time: 1ms
memory: 3532kb

input:

0.607834 0.733102

output:

12121222122212

result:

ok ok

Test #26:

score: 0
Accepted
time: 1ms
memory: 3656kb

input:

0.516860 0.252876

output:

12221211111121

result:

ok ok

Test #27:

score: 0
Accepted
time: 1ms
memory: 3516kb

input:

0.955285 0.457773

output:

22121121212221

result:

ok ok

Test #28:

score: 0
Accepted
time: 1ms
memory: 3664kb

input:

0.156178 0.353262

output:

22122112122121

result:

ok ok

Test #29:

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

input:

0.398701 0.040258

output:

12112112121111

result:

ok ok

Test #30:

score: 0
Accepted
time: 1ms
memory: 3708kb

input:

0.973859 0.000184

output:

12111111111111

result:

ok ok

Test #31:

score: 0
Accepted
time: 1ms
memory: 3536kb

input:

0.882213 0.556709

output:

11111212221112

result:

ok ok

Test #32:

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

input:

0.263822 0.460984

output:

11111112212221

result:

ok ok

Test #33:

score: 0
Accepted
time: 1ms
memory: 3572kb

input:

0.443432 0.034841

output:

12122211121111

result:

ok ok