QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#130355#6641. XOR DiceRobeZH#AC ✓1ms3572kbC++14978b2023-07-23 21:49:132023-07-23 21:49:15

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-07-23 21:49:15]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3572kb
  • [2023-07-23 21:49:13]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define trav(a, x) for(auto& a : x)
#define all(x) begin(x), end(x)
#define sz(x) (int)(x).size()
#define subnb true
#define Lnb true
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(NULL);

    int n, d;
//    n = 1
    cin >> n >> d;
    rep(i, 0, n) {
        int mul = 1 << 6;
        vi vs;
        rep(mask, 0, 6) {
            vs.push_back(((mask >> 2 & 1) * mul * mul + (mask >> 1 & 1) * mul + (mask & 1)) * d );
        }
        for (int x : vs) cout << x << " ";
        cout << '\n';
//        for (int x : vs) {
//            assert(x <= (int)1e6);
//            for (int y : vs) {
//                assert((x ^ y) % d == 0);
//            }
//        }
    }
//    rep(d, 1, 61) {
//
//    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

3 2

output:

0 2 128 130 8192 8194 
0 2 128 130 8192 8194 
0 2 128 130 8192 8194 

result:

ok Correct answer

Test #2:

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

input:

100 60

output:

0 60 3840 3900 245760 245820 
0 60 3840 3900 245760 245820 
0 60 3840 3900 245760 245820 
0 60 3840 3900 245760 245820 
0 60 3840 3900 245760 245820 
0 60 3840 3900 245760 245820 
0 60 3840 3900 245760 245820 
0 60 3840 3900 245760 245820 
0 60 3840 3900 245760 245820 
0 60 3840 3900 245760 245820 
...

result:

ok Correct answer

Test #3:

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

input:

99 2

output:

0 2 128 130 8192 8194 
0 2 128 130 8192 8194 
0 2 128 130 8192 8194 
0 2 128 130 8192 8194 
0 2 128 130 8192 8194 
0 2 128 130 8192 8194 
0 2 128 130 8192 8194 
0 2 128 130 8192 8194 
0 2 128 130 8192 8194 
0 2 128 130 8192 8194 
0 2 128 130 8192 8194 
0 2 128 130 8192 8194 
0 2 128 130 8192 8194 
0...

result:

ok Correct answer

Test #4:

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

input:

99 59

output:

0 59 3776 3835 241664 241723 
0 59 3776 3835 241664 241723 
0 59 3776 3835 241664 241723 
0 59 3776 3835 241664 241723 
0 59 3776 3835 241664 241723 
0 59 3776 3835 241664 241723 
0 59 3776 3835 241664 241723 
0 59 3776 3835 241664 241723 
0 59 3776 3835 241664 241723 
0 59 3776 3835 241664 241723 
...

result:

ok Correct answer

Test #5:

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

input:

93 17

output:

0 17 1088 1105 69632 69649 
0 17 1088 1105 69632 69649 
0 17 1088 1105 69632 69649 
0 17 1088 1105 69632 69649 
0 17 1088 1105 69632 69649 
0 17 1088 1105 69632 69649 
0 17 1088 1105 69632 69649 
0 17 1088 1105 69632 69649 
0 17 1088 1105 69632 69649 
0 17 1088 1105 69632 69649 
0 17 1088 1105 69632...

result:

ok Correct answer

Test #6:

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

input:

100 49

output:

0 49 3136 3185 200704 200753 
0 49 3136 3185 200704 200753 
0 49 3136 3185 200704 200753 
0 49 3136 3185 200704 200753 
0 49 3136 3185 200704 200753 
0 49 3136 3185 200704 200753 
0 49 3136 3185 200704 200753 
0 49 3136 3185 200704 200753 
0 49 3136 3185 200704 200753 
0 49 3136 3185 200704 200753 
...

result:

ok Correct answer

Test #7:

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

input:

100 5

output:

0 5 320 325 20480 20485 
0 5 320 325 20480 20485 
0 5 320 325 20480 20485 
0 5 320 325 20480 20485 
0 5 320 325 20480 20485 
0 5 320 325 20480 20485 
0 5 320 325 20480 20485 
0 5 320 325 20480 20485 
0 5 320 325 20480 20485 
0 5 320 325 20480 20485 
0 5 320 325 20480 20485 
0 5 320 325 20480 20485 
...

result:

ok Correct answer

Test #8:

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

input:

1 57

output:

0 57 3648 3705 233472 233529 

result:

ok Correct answer

Test #9:

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

input:

1 22

output:

0 22 1408 1430 90112 90134 

result:

ok Correct answer

Test #10:

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

input:

1 60

output:

0 60 3840 3900 245760 245820 

result:

ok Correct answer

Test #11:

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

input:

1 2

output:

0 2 128 130 8192 8194 

result:

ok Correct answer

Test #12:

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

input:

10 24

output:

0 24 1536 1560 98304 98328 
0 24 1536 1560 98304 98328 
0 24 1536 1560 98304 98328 
0 24 1536 1560 98304 98328 
0 24 1536 1560 98304 98328 
0 24 1536 1560 98304 98328 
0 24 1536 1560 98304 98328 
0 24 1536 1560 98304 98328 
0 24 1536 1560 98304 98328 
0 24 1536 1560 98304 98328 

result:

ok Correct answer