QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#213394#6641. XOR Diceucup-team228#AC ✓1ms3620kbC++20784b2023-10-14 14:04:102023-10-14 14:04:12

Judging History

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

  • [2023-10-14 14:04:12]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3620kb
  • [2023-10-14 14:04:10]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

#define all(v) (v).begin(), (v).end()
#define rall(v) (v).rbegin(), (v).rend()

typedef long long ll;
typedef pair<int, int> pii;

mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());

template<typename T>
std::ostream& operator << (std::ostream& os, const vector<T>& a) {
    for (const T& x : a) {
        os << x << ' ';
    }
    return os;
}


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

    int n, d;
    cin >> n >> d;
    for (int i = 0; i < n; ++i) {
        cout << "0 ";
        int a = d;
        int b = d << 6;
        int c = d << 12;
        cout << a << ' ' << b << ' ' << c << ' ' << a + b << ' ' << a + c << '\n';
    }

    return 0;
}


詳細信息

Test #1:

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

input:

3 2

output:

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

result:

ok Correct answer

Test #2:

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

input:

100 60

output:

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

result:

ok Correct answer

Test #3:

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

input:

99 2

output:

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

result:

ok Correct answer

Test #4:

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

input:

99 59

output:

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

result:

ok Correct answer

Test #5:

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

input:

93 17

output:

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

result:

ok Correct answer

Test #6:

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

input:

100 49

output:

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

result:

ok Correct answer

Test #7:

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

input:

100 5

output:

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

result:

ok Correct answer

Test #8:

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

input:

1 57

output:

0 57 3648 233472 3705 233529

result:

ok Correct answer

Test #9:

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

input:

1 22

output:

0 22 1408 90112 1430 90134

result:

ok Correct answer

Test #10:

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

input:

1 60

output:

0 60 3840 245760 3900 245820

result:

ok Correct answer

Test #11:

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

input:

1 2

output:

0 2 128 8192 130 8194

result:

ok Correct answer

Test #12:

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

input:

10 24

output:

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

result:

ok Correct answer