結果

問題 No.1746 Sqrt Integer Segments
ユーザー tailstails
提出日時 2021-11-18 01:27:02
言語 C
(gcc 12.3.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,397 bytes
コンパイル時間 427 ms
コンパイル使用メモリ 30,848 KB
実行使用メモリ 12,712 KB
最終ジャッジ日時 2024-09-13 09:24:22
合計ジャッジ時間 2,391 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
7,336 KB
testcase_01 AC 6 ms
7,464 KB
testcase_02 AC 27 ms
12,324 KB
testcase_03 AC 20 ms
11,816 KB
testcase_04 AC 23 ms
12,072 KB
testcase_05 AC 34 ms
12,712 KB
testcase_06 AC 19 ms
11,820 KB
testcase_07 AC 13 ms
11,560 KB
testcase_08 AC 27 ms
12,328 KB
testcase_09 AC 32 ms
12,584 KB
testcase_10 AC 17 ms
11,688 KB
testcase_11 AC 33 ms
12,584 KB
testcase_12 AC 35 ms
12,712 KB
testcase_13 AC 34 ms
12,712 KB
testcase_14 AC 34 ms
12,584 KB
testcase_15 AC 33 ms
12,712 KB
testcase_16 AC 33 ms
12,712 KB
testcase_17 RE -
testcase_18 AC 6 ms
7,848 KB
testcase_19 AC 6 ms
7,720 KB
testcase_20 AC 7 ms
7,720 KB
testcase_21 AC 9 ms
7,976 KB
testcase_22 AC 10 ms
7,976 KB
testcase_23 AC 8 ms
7,720 KB
testcase_24 AC 14 ms
8,620 KB
testcase_25 AC 14 ms
8,620 KB
testcase_26 AC 14 ms
8,616 KB
testcase_27 AC 12 ms
9,000 KB
testcase_28 AC 13 ms
8,996 KB
testcase_29 AC 13 ms
9,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function 'f2':
main.c:75:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   75 |         write(1,wp,wbuf+sizeof wbuf-wp);
      |         ^~~~~
main.c:76:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   76 |         _exit(0);
      |         ^~~~~
      |         _Exit
main.c: At top level:
main.c:79:1: warning: return type defaults to 'int' [-Wimplicit-int]
   79 | main(){
      | ^~~~

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")

char*mmap();

#define rd_skip() while(*rp++>=48)
#define rd(v) long v=0;{long _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;}
#define wt(v) {long _z=v;do*--wp=_z%10+48;while(_z/=10);}

#define SIEVE_N 1000000
unsigned sieve[SIEVE_N/2+1][2];
void mksieve(){
	for(long i=3;i*i<SIEVE_N;i+=2){
		if(sieve[i>>1][0]==0){
			long k=i;
			for(long j=i*i>>1;j<SIEVE_N/2;j+=i){
				sieve[j][0]=i;
				sieve[j][1]=k;
				k+=2;
			}
		}
	}
}

static inline
unsigned long splitmix64(unsigned long x) {
	x += 0x9e3779b97f4a7c15;
	x = (x ^ (x >> 30)) * 0xbf58476d1ce4e5b9;
	x = (x ^ (x >> 27)) * 0x94d049bb133111eb;
	return x ^ (x >> 31);
}

#define HH_BITS 19
#define HH_LEN (1<<HH_BITS)
#define HH_MASK (HH_LEN-1)
unsigned long hh[HH_LEN];
int c[HH_LEN];

long f1(){
	char*rp=mmap(0l,1l<<25,1,2,0,0ll);
	rd_skip();
	long z=0;
	unsigned long h=1;
	{
		unsigned long h2=h&0x3ffff;
		hh[h2]=h;
		z+=c[h2]++;
	}
	while(*rp){
		rd(a);
		while((a&3)==0){
			a>>=2;
		}
		if((a&1)==0){
			h^=splitmix64(2);
			a>>=1;
		}
		while(a>1){
			h^=splitmix64(sieve[a>>1][0]?:a);
			a=sieve[a>>1][1];
		}
		unsigned long h2=h&HH_MASK;
		while(hh[h2]!=0&&hh[h2]!=h){
			h2=h2+1&HH_MASK;
		}
		hh[h2]=h;
		z+=c[h2]++;
	}
	return z;
}

void f2(long z){
	char wbuf[64],*wp=wbuf+sizeof wbuf;
	wt(z);
	write(1,wp,wbuf+sizeof wbuf-wp);
	_exit(0);
}

main(){
	mksieve();
	f2(f1());
}
0