QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#636969#2920. Ultimate Binary Watchenze114514#AC ✓0ms3876kbC++201.5kb2024-10-13 04:43:012024-10-13 04:43:01

Judging History

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

  • [2024-10-13 04:43:01]
  • 评测
  • 测评结果:AC
  • 用时:0ms
  • 内存:3876kb
  • [2024-10-13 04:43:01]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;
using ll = long long;
using ld = long double;

#define pb push_back

const ld pi = 3.14159265358979323846;
const int mod = 998244353;
const ll INF = 1e18;

template<typename T>
T chmax(T a, T b) {
    return a > b ? a : b;
}

template<typename T>
T chmin(T a, T b) {
    return a > b ? b : a;
}

const int N = (int) 1e5 + 1, M = N * 2;

void solve() {
    int a[4][4] = {0};
    string s;
    cin >> s;
//    cout << s << endl;
    for (int i = 0; i < s.length(); ++i) {
        int x = s[i] - '0';
        int j = 3;
        while (x) {
            a[i][j] = x & 1;
            x >>= 1;
            j--;
        }
    }
//    for (int i = 0; i < 4; ++i) {
//        for (int j = 0; j < 4; ++j) {
//            cout << a[i][j];
//        }
//        cout << endl;
//    }
    for (int j = 0; j < 4; ++j) {
        for (int i = 0; i < 4; ++i) {
            if (a[i][j]) {
                cout << "*";
            } else {
                cout << ".";
            }
            if (i != 3) {
                cout << " ";
            }
            if (i == 1)
                cout << " ";
        }
        cout << endl;
    }
}

int main() {
    // freopen(".in", "r", stdin);
    // freopen(".out", "w", stdout);

    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);

    int t = 1;
//    cin >> t;

    while (t--) {
        solve();
    }

    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

1234

output:

. .  . .
. .  . *
. *  * .
* .  * .

result:

ok 4 lines

Test #2:

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

input:

0056

output:

. .  . .
. .  * *
. .  . *
. .  * .

result:

ok 4 lines

Test #3:

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

input:

0708

output:

. .  . *
. *  . .
. *  . .
. *  . .

result:

ok 4 lines

Test #4:

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

input:

0909

output:

. *  . *
. .  . .
. .  . .
. *  . *

result:

ok 4 lines

Test #5:

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

input:

0000

output:

. .  . .
. .  . .
. .  . .
. .  . .

result:

ok 4 lines

Test #6:

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

input:

0001

output:

. .  . .
. .  . .
. .  . .
. .  . *

result:

ok 4 lines

Test #7:

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

input:

0100

output:

. .  . .
. .  . .
. .  . .
. *  . .

result:

ok 4 lines

Test #8:

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

input:

2300

output:

. .  . .
. .  . .
* *  . .
. *  . .

result:

ok 4 lines

Test #9:

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

input:

2359

output:

. .  . *
. .  * .
* *  . .
. *  * *

result:

ok 4 lines

Test #10:

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

input:

1757

output:

. .  . .
. *  * *
. *  . *
* *  * *

result:

ok 4 lines

Test #11:

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

input:

0959

output:

. *  . *
. .  * .
. .  . .
. *  * *

result:

ok 4 lines

Test #12:

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

input:

2007

output:

. .  . .
. .  . *
* .  . *
. .  . *

result:

ok 4 lines

Test #13:

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

input:

2244

output:

. .  . .
. .  * *
* *  . .
. .  . .

result:

ok 4 lines

Test #14:

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

input:

1939

output:

. *  . *
. .  . .
. .  * .
* *  * *

result:

ok 4 lines

Test #15:

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

input:

0117

output:

. .  . .
. .  . *
. .  . *
. *  * *

result:

ok 4 lines

Test #16:

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

input:

0220

output:

. .  . .
. .  . .
. *  * .
. .  . .

result:

ok 4 lines

Test #17:

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

input:

1354

output:

. .  . .
. .  * *
. *  . .
* *  * .

result:

ok 4 lines

Test #18:

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

input:

1201

output:

. .  . .
. .  . .
. *  . .
* .  . *

result:

ok 4 lines

Test #19:

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

input:

1902

output:

. *  . .
. .  . .
. .  . *
* *  . .

result:

ok 4 lines

Test #20:

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

input:

2229

output:

. .  . *
. .  . .
* *  * .
. .  . *

result:

ok 4 lines

Test #21:

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

input:

0749

output:

. .  . *
. *  * .
. *  . .
. *  . *

result:

ok 4 lines

Test #22:

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

input:

1957

output:

. *  . .
. .  * *
. .  . *
* *  * *

result:

ok 4 lines

Test #23:

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

input:

0019

output:

. .  . *
. .  . .
. .  . .
. .  * *

result:

ok 4 lines

Test #24:

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

input:

1127

output:

. .  . .
. .  . *
. .  * *
* *  . *

result:

ok 4 lines

Test #25:

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

input:

1502

output:

. .  . .
. *  . .
. .  . *
* *  . .

result:

ok 4 lines

Test #26:

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

input:

1615

output:

. .  . .
. *  . *
. *  . .
* .  * *

result:

ok 4 lines

Test #27:

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

input:

1900

output:

. *  . .
. .  . .
. .  . .
* *  . .

result:

ok 4 lines

Test #28:

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

input:

0830

output:

. *  . .
. .  . .
. .  * .
. .  * .

result:

ok 4 lines