QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#135002#6641. XOR Dice4k2kok#AC ✓1ms3580kbC++20951b2023-08-05 10:35:112023-08-05 10:35:13

Judging History

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

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

answer

#include<bits/stdc++.h>
using namespace std;
#define INF 0x3f3f3f3f
#define PI acos(-1)
#define io ios::sync_with_stdio(false); cin.tie(0); cout.tie(0)
#define mem(a,b) memset((a),(b),sizeof(a))
typedef long long ll;
typedef unsigned long long ull;
#define int long long
#define db long double

const double eps = 1e-6;
const int mod = 1e9 + 7;
const int maxn = 1e5 + 10;

int n, d;

void solve() {
    cin >> n >> d;
    vector<int> ans;
    ans.push_back(0);
    ans.push_back(d);
    ans.push_back(d << 6);
    ans.push_back((d << 6) + d);
    ans.push_back((d << 12));
    ans.push_back((d << 12) + d);
    for(int i = 1; i <= n; i++) {
        for(int j = 0; j < 6; j++) {
            if(j == 0) cout << ans[j];
            else cout << " " << ans[j]; 
        } 
        cout << '\n';
    }
}

signed main(){
   io;
    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: 1ms
memory: 3524kb

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: 1ms
memory: 3568kb

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
0 60 3840 ...

result:

ok Correct answer

Test #3:

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

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 2 128 130 81...

result:

ok Correct answer

Test #4:

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

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
0 59 3776 ...

result:

ok Correct answer

Test #5:

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

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 69649
0 1...

result:

ok Correct answer

Test #6:

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

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
0 49 3136 ...

result:

ok Correct answer

Test #7:

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

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
0 5 320 325 ...

result:

ok Correct answer

Test #8:

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

input:

1 57

output:

0 57 3648 3705 233472 233529

result:

ok Correct answer

Test #9:

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

input:

1 22

output:

0 22 1408 1430 90112 90134

result:

ok Correct answer

Test #10:

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

input:

1 60

output:

0 60 3840 3900 245760 245820

result:

ok Correct answer

Test #11:

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

input:

1 2

output:

0 2 128 130 8192 8194

result:

ok Correct answer

Test #12:

score: 0
Accepted
time: 0ms
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