#296

by ‮yeknom

Submitted 2 years 11 months ago
Mon Apr 26 19:47:12 CST 2021
Judger: judger1
Dataset Version: v1

301 ms / 201372 KB
Final 51
Problem: fun21.density
Language: GNU C++ 11


#1

301ms / 200452KB / Point
Input
8
Output
14302490
Answer
1
Checker Information
4 Rank: C, Score 4. Density=663.00. Delta=655.00

#2

168ms / 201280KB / Point
Input
16
Output
40527890
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1191.00. Delta=1175.00

#3

168ms / 200876KB / Point
Input
32
Output
15615421
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1188.00. Delta=1156.00

#4

179ms / 200736KB / Point
Input
128
Output
47489483
Answer
1
Checker Information
4 Rank: C, Score 4. Density=1115.00. Delta=987.00

#5

219ms / 200540KB / Point
Input
233
Output
49049296
Answer
1
Checker Information
4 Rank: C, Score 4. Density=911.00. Delta=678.00

#6

192ms / 200276KB / Point
Input
262
Output
7694869
Answer
1
Checker Information
4 Rank: C, Score 4. Density=1037.00. Delta=775.00

#7

184ms / 200680KB / Point
Input
262.144
Output
3825606
Answer
1
Checker Information
4 Rank: C, Score 4. Density=1084.00. Delta=821.86

#8

164ms / 200388KB / Point
Input
666.66
Output
39774049
Answer
1
Checker Information
4 Rank: C, Score 4. Density=1214.00. Delta=547.34

#9

187ms / 200948KB / Point
Input
1024.996
Output
53006684
Answer
1
Checker Information
8 Rank: A, Score 8. Density=1068.00. Delta=43.00

#10

210ms / 201212KB / Point
Input
1888.88
Output
42289115
Answer
1
Checker Information
4 Rank: C, Score 4. Density=953.00. Delta=935.88

#11

178ms / 200924KB / Point
Input
2048
Output
61525669
Answer
1
Checker Information
4 Rank: C, Score 4. Density=1122.00. Delta=926.00

#12

176ms / 200792KB / Point
Input
4096
Output
36205602
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1134.00. Delta=2962.00

#13

184ms / 201260KB / Point
Input
10000
Output
50700293
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1087.00. Delta=8913.00

#14

168ms / 200676KB / Point
Input
12345
Output
2254415
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1187.00. Delta=11158.00

#15

170ms / 200560KB / Point
Input
20000
Output
48244574
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1172.00. Delta=18828.00

#16

179ms / 200576KB / Point
Input
100000
Output
62729250
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1114.00. Delta=98886.00

#17

203ms / 201364KB / Point
Input
114514
Output
7965065
Answer
1
Checker Information
1 Rank: D, Score 1. Density=987.00. Delta=113527.00

#18

179ms / 200884KB / Point
Input
191981.0
Output
8504236
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1116.00. Delta=190865.00

#19

206ms / 200784KB / Point
Input
200000
Output
27229492
Answer
1
Checker Information
1 Rank: D, Score 1. Density=969.00. Delta=199031.00

#20

168ms / 201372KB / Point
Input
262000
Output
5655166
Answer
1
Checker Information
1 Rank: D, Score 1. Density=1191.00. Delta=260809.00
//Original Code:
//#include <self/utility>
//#include <self/debug>
//#include <self/rand>
//using namespace std;
//int a[240*1024*1024/4];
//
//int main()
//{
//	// freopen("input.txt","r",stdin);
//	for(int i=0;i<100000;i++)
//	{
//		int x=rand(0,240*1024*1024/4-1);
//		a[x]=rand(1,240*1024*1024/4);
//	}
//	
//	int res=0;
//	for(int i=0;i<100000;i++)
//	{
//		int x=rand(0,240*1024*1024/4-1);
//		res^=a[x];
//	}
//	cout<<res<<endl;
//	
//	// memset(a,0,sizeof(a));
//	return 0;
//}

//substituted with C++ Inliner
#ifndef _SELF_UTILITY
#define _SELF_UTILITY 1
#include <numeric>
#include <iostream>
#include <algorithm>
#include <cmath>
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <string.h>
#include <stack>
#include <assert.h>
#include <bitset>
#include <time.h>
#define Endl endl
#define mp make_pair
#define mt make_tuple
#define ll long long 
#define ull unsigned long long
#define pii pair<int,int>
#define over(A) {cout<<A<<endl;exit(0);}
#define all(A) A.begin(),A.end()
#define quickcin ios_base::sync_with_stdio(false);
#ifdef __TAKE_MOD
int mod;
#else
#ifdef __TAKE_CONST_MOD
const int mod=__TAKE_CONST_MOD;
#else
const int mod=1000000007;
#endif
#endif
const int gmod=3;
const int inf=1039074182;
#ifdef __TAKE_CONST_EPS
const double eps=__TAKE_CONST_EPS;
#else
const double eps=1e-9;
#endif
const double pi=3.141592653589793238462643383279;
const ll llinf=2LL*inf*inf;
template <typename T1,typename T2> inline void chmin(T1 &x,T2 b) {if(b<x) x=b;}
template <typename T1,typename T2> inline void chmax(T1 &x,T2 b) {if(b>x) x=b;}
inline void chadd(int &x,int b) {x+=b-mod;x+=(x>>31 & mod);}
template <typename T1,typename T2> inline void chadd(T1 &x,T2 b) {x+=b;if(x>=mod) x-=mod;}
template <typename T1,typename T2> inline void chmul(T1 &x,T2 b) {x=1LL*x*b%mod;}
template <typename T1,typename T2> inline void chmod(T1 &x,T2 b) {x%=b,x+=b;if(x>=b) x-=b;}
template <typename T> inline T mabs(T x) {return (x<0?-x:x);}
using namespace std;
#endif
#ifndef _SELF_DEBUG
#define _SELF_DEBUG 1
#ifndef _SELF_OPERATOR
#define _SELF_OPERATOR 1
using namespace std;
template <typename T>
ostream & operator<<(ostream &cout, const vector<T> &vec)
{
	cout << "{";
	for (int i = 0; i < (int)vec.size(); i++)
	{
		cout << vec[i];
		if (i != (int)vec.size() - 1)
			cout << ',';
	}
	cout << "}";
	return cout;
}

template <typename T1, typename T2>
ostream &operator<<(ostream &cout, pair<T1, T2> p)
{
	cout << "(" << p.first << ',' << p.second << ")";
	return cout;
}

template <typename T, typename T2>
ostream &operator<<(ostream &cout, set<T, T2> s)
{
	vector<T> t;
	for (auto x : s)
		t.push_back(x);
	cout << t;
	return cout;
}

template <typename T, typename T2>
ostream &operator<<(ostream &cout, multiset<T, T2> s)
{
	vector<T> t;
	for (auto x : s)
		t.push_back(x);
	cout << t;
	return cout;
}

template <typename T>
ostream &operator<<(ostream &cout, queue<T> q)
{
	vector<T> t;
	while (q.size())
	{
		t.push_back(q.front());
		q.pop();
	}
	cout << t;
	return cout;
}

template <typename T1, typename T2, typename T3>
ostream &operator<<(ostream &cout, map<T1, T2, T3> m)
{
	for (auto &x : m)
	{
		cout << "Key: " << x.first << ' ' << "Value: " << x.second << endl;
	}
	return cout;
}

template <typename T1, typename T2>
void operator+=(pair<T1, T2> &x,const pair<T1, T2> y)
{
	x.first += y.first;
	x.second += y.second;
}
template <typename T1,typename T2>
pair<T1,T2> operator + (const pair<T1,T2> &x,const pair<T1,T2> &y)
{
	return make_pair(x.first+y.first,x.second+y.second);
}

template <typename T1,typename T2>
pair<T1,T2> operator - (const pair<T1,T2> &x,const pair<T1,T2> &y)
{
	return mp(x.first-y.first,x.second-y.second);
}

template <typename T1, typename T2>
pair<T1, T2> operator-(pair<T1, T2> x)
{
	return make_pair(-x.first, -x.second);
}

template <typename T>
vector<vector<T>> operator~(vector<vector<T>> vec)
{
	vector<vector<T>> v;
	int n = vec.size(), m = vec[0].size();
	v.resize(m);
	for (int i = 0; i < m; i++)
	{
		v[i].resize(n);
	}
	for (int i = 0; i < m; i++)
	{
		for (int j = 0; j < n; j++)
		{
			v[i][j] = vec[j][i];
		}
	}
	return v;
}
#endif
#include <sstream>
void print0x(int x)
{
	std::vector <int> vec;
	while(x)
	{
		vec.push_back(x&1);
		x>>=1;
	}
	std::reverse(vec.begin(),vec.end());
	for(int i=0;i<(int)vec.size();i++)
	{
		std::cout<<vec[i];
	}
	std::cout<<' ';
}

template <typename T>
void print0x(T x,int len)
{
	std::vector <int> vec;
	while(x)
	{
		vec.push_back(x&1);
		x>>=1;
	}
	reverse(vec.begin(),vec.end());
	for(int i=(int)vec.size();i<len;i++)
	{
		putchar('0');
	}
	for(size_t i=0;i<vec.size();i++)
	{
		std::cout<<vec[i];
	}
	std::cout<<' ';
}
vector<string> vec_splitter(string s) {
	s += ',';
	vector<string> res;
	while(!s.empty()) {
		res.push_back(s.substr(0, s.find(',')));
		s = s.substr(s.find(',') + 1);
	}
	return res;
}
void debug_out(
vector<string> __attribute__ ((unused)) args,
__attribute__ ((unused)) int idx, 
__attribute__ ((unused)) int LINE_NUM) { cerr << endl; } 
template <typename Head, typename... Tail>
void debug_out(vector<string> args, int idx, int LINE_NUM, Head H, Tail... T) {
	if(idx > 0) cerr << ", "; else cerr << "Line(" << LINE_NUM << ") ";
	stringstream ss; ss << H;
	cerr << args[idx] << " = " << ss.str();
	debug_out(args, idx + 1, LINE_NUM, T...);
}
#define debug(...) debug_out(vec_splitter(#__VA_ARGS__), 0, __LINE__, __VA_ARGS__)
#endif
#ifndef _SELF_RAND
#define _SELF_RAND 1
#if __cplusplus < 201103L
long long _Rand_Gen_Num() {return 1LL*rand()*RAND_MAX+rand();}
int rand(int l,int r) {long long x=_Rand_Gen_Num();return x%(r-l+1)+l;}
#else
#include <time.h>
#include <chrono>
#include <random>
using namespace std; 
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
#define rand(l,r) uniform_int_distribution<long long>(l,r)(rng)
#endif
template <typename Iterator>
void _m_random_shuffle(Iterator begin,Iterator end)
{
    for(Iterator it=begin+1;it!=end;it++)
    {
        iter_swap(begin+rand(0,it-begin),it);
    }
}
#define random_shuffle(a,b) _m_random_shuffle(a,b)
#endif
using namespace std;
int a[240*1024*1024/4];

int main()
{
//	// freopen("input.txt","r",stdin);
	for(int i=0;i<100000;i++)
	{
		int x=rand(0,240*1024*1024/4-1);
		a[x]=rand(1,240*1024*1024/4);
	}
	
	int res=0;
	for(int i=0;i<100000;i++)
	{
		int x=rand(0,240*1024*1024/4-1);
		res^=a[x];
	}
	cout<<res<<endl;
	
	// memset(a,0,sizeof(a));
	return 0;
}