QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#116488#6641. XOR DicewsyearAC ✓1ms3468kbC++141.4kb2023-06-29 13:12:432023-06-29 13:12:45

Judging History

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

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

answer

/*
* Author: Enucai
* Date: 2022-12-13 11:36:09
* LastEditTime: 2023-06-29 13:11:47
*/

#include <bits/stdc++.h>
#ifdef dbg
#define D(...) fprintf(stderr, __VA_ARGS__)
#define DD(...) D(#__VA_ARGS__ " = "), debug_helper::debug(__VA_ARGS__), D("\n")
#include "C:\Users\wsyear\Desktop\OI\templates\debug.hpp"
#else
#define D(...) ((void)0)
#define DD(...) ((void)0)
#endif
#define rep(i, j, k) for (int i = (j); i <= (k); ++i)
#define per(i, j, k) for (int i = (j); i >= (k); --i)
#define SZ(v) int((v).size())
#define ALL(v) (v).begin(),(v).end()
#define fi first
#define se second
#define gc getchar
#define pc putchar
using ll = long long;
using pii = std::pair<int, int>;
using pll = std::pair<ll, ll>;

using namespace std;

template <class T = int> T read() {
  T x = 0; bool f = 0; char ch = gc();
  while (!isdigit(ch)) f = ch == '-', ch = gc();
  while (isdigit(ch)) x = (x << 3) + (x << 1) + (ch ^ 48), ch = gc();
  return f ? -x: x;
}
template <class T> void write(T x) {
  if (x >= 0) { if (x > 9) write(x / 10); pc(x % 10 + 48); }
  else { pc('-'); if (x < -9) write(-x / 10); pc(48 - x % 10); }
}

int n, d;

int main() {
  n = read(), d = read();
  rep (i, 1, n) {
    cout << 0 << " ";
    cout << d << " ";
    cout << 64 * d << " ";
    cout << 65 * d << " ";
    cout << 4096 * d << " ";
    cout << 4097 * d << "\n";
  }
}

详细

Test #1:

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

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: 3400kb

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: 3260kb

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: 3380kb

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: 3376kb

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: 3380kb

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: 3380kb

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: 3372kb

input:

1 57

output:

0 57 3648 3705 233472 233529

result:

ok Correct answer

Test #9:

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

input:

1 22

output:

0 22 1408 1430 90112 90134

result:

ok Correct answer

Test #10:

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

input:

1 60

output:

0 60 3840 3900 245760 245820

result:

ok Correct answer

Test #11:

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

input:

1 2

output:

0 2 128 130 8192 8194

result:

ok Correct answer

Test #12:

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

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