QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#188389#6641. XOR DiceqzzyqAC ✓1ms3784kbC++141.2kb2023-09-25 19:48:522023-09-25 19:48:52

Judging History

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

  • [2023-09-25 19:48:52]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3784kb
  • [2023-09-25 19:48:52]
  • 提交

answer

#include<bits/stdc++.h>
#define ll long long
#define ull unsigned long long
#define maxn
#define put() putchar('\n')
#define Tp template<typename Ty>
#define Ts template<typename Ty,typename... Ar>
using namespace std;
void read(int &x){
    int f=1;x=0;char c=getchar();
    while (c<'0'||c>'9') {if (c=='-') f=-1;c=getchar();}
    while (c>='0'&&c<='9') {x=x*10+c-'0';c=getchar();}
    x*=f;
}
namespace Debug{
	Tp void _debug(char* f,Ty t){cerr<<f<<'='<<t<<endl;}
	Ts void _debug(char* f,Ty x,Ar... y){while(*f!=',') cerr<<*f++;cerr<<'='<<x<<",";_debug(f+1,y...);}
	Tp ostream& operator<<(ostream& os,vector<Ty>& V){os<<"[";for(auto& vv:V) os<<vv<<",";os<<"]";return os;}
	#define gdb(...) _debug((char*)#__VA_ARGS__,__VA_ARGS__)
}using namespace Debug;
#define fi first
#define se second
#define mk make_pair
const int mod=1e9+7;
int power(int x,int y=mod-2) {
	int sum=1;
	while (y) {
		if (y&1) sum=sum*x%mod;
		x=x*x%mod;y>>=1;
	}
	return sum;
}
void solve(void) {
	int n,d,i;
	read(n);read(d);
	int base=1<<6;
	for (i=1;i<=n;i++) printf("%d %d %d %d %d %d\n",0,d,d*base,d*base+d,d*base*base,d*base*base+d);
}
signed main(void){
//	freopen("1.in","r",stdin);
	solve();
	return 0;
}

詳細信息

Test #1:

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

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

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

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

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

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: 0ms
memory: 3608kb

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

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

input:

1 57

output:

0 57 3648 3705 233472 233529

result:

ok Correct answer

Test #9:

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

input:

1 22

output:

0 22 1408 1430 90112 90134

result:

ok Correct answer

Test #10:

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

input:

1 60

output:

0 60 3840 3900 245760 245820

result:

ok Correct answer

Test #11:

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

input:

1 2

output:

0 2 128 130 8192 8194

result:

ok Correct answer

Test #12:

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

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