QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#53671#2920. Ultimate Binary WatchSilverhorse7#AC ✓3ms3708kbC++647b2022-10-05 18:11:082022-10-05 18:11:09

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2022-10-05 18:11:09]
  • 评测
  • 测评结果:AC
  • 用时:3ms
  • 内存:3708kb
  • [2022-10-05 18:11:08]
  • 提交

answer

#include "bits/stdc++.h"

using namespace std;
#define int long long

signed main() {
    string s;
    cin >> s;
    vector<vector<char>> v(4, vector<char>(4));
    int it = 0;
    for (int i = 0; i < s.size(); i++) {
        bitset<4> bs(s[i] - '0');
        for (int j = 3; j >= 0; j--) {
            if (bs[j] == 1)
                v[it++][i] = '*';
            else
                v[it++][i] = '.';
        }
        it = 0;
    }
    for (int i = 0; i < 4; i++) {
        for (int j = 0; j < 4; j++) {
            cout << v[i][j] << ' ';
            if (j == 1)cout << ' ';
        }
        cout << endl;
    }
}

详细

Test #1:

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

input:

1234

output:

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

result:

ok 4 lines

Test #2:

score: 0
Accepted
time: 2ms
memory: 3520kb

input:

0056

output:

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

result:

ok 4 lines

Test #3:

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

input:

0708

output:

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

result:

ok 4 lines

Test #4:

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

input:

0909

output:

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

result:

ok 4 lines

Test #5:

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

input:

0000

output:

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

result:

ok 4 lines

Test #6:

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

input:

0001

output:

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

result:

ok 4 lines

Test #7:

score: 0
Accepted
time: 2ms
memory: 3520kb

input:

0100

output:

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

result:

ok 4 lines

Test #8:

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

input:

2300

output:

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

result:

ok 4 lines

Test #9:

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

input:

2359

output:

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

result:

ok 4 lines

Test #10:

score: 0
Accepted
time: 3ms
memory: 3660kb

input:

1757

output:

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

result:

ok 4 lines

Test #11:

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

input:

0959

output:

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

result:

ok 4 lines

Test #12:

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

input:

2007

output:

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

result:

ok 4 lines

Test #13:

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

input:

2244

output:

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

result:

ok 4 lines

Test #14:

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

input:

1939

output:

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

result:

ok 4 lines

Test #15:

score: 0
Accepted
time: 2ms
memory: 3696kb

input:

0117

output:

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

result:

ok 4 lines

Test #16:

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

input:

0220

output:

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

result:

ok 4 lines

Test #17:

score: 0
Accepted
time: 2ms
memory: 3660kb

input:

1354

output:

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

result:

ok 4 lines

Test #18:

score: 0
Accepted
time: 2ms
memory: 3544kb

input:

1201

output:

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

result:

ok 4 lines

Test #19:

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

input:

1902

output:

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

result:

ok 4 lines

Test #20:

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

input:

2229

output:

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

result:

ok 4 lines

Test #21:

score: 0
Accepted
time: 2ms
memory: 3520kb

input:

0749

output:

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

result:

ok 4 lines

Test #22:

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

input:

1957

output:

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

result:

ok 4 lines

Test #23:

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

input:

0019

output:

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

result:

ok 4 lines

Test #24:

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

input:

1127

output:

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

result:

ok 4 lines

Test #25:

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

input:

1502

output:

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

result:

ok 4 lines

Test #26:

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

input:

1615

output:

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

result:

ok 4 lines

Test #27:

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

input:

1900

output:

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

result:

ok 4 lines

Test #28:

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

input:

0830

output:

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

result:

ok 4 lines