結果

問題 No.1514 Squared Matching
ユーザー tailstails
提出日時 2021-05-21 23:08:39
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 3,952 ms / 4,000 ms
コード長 844 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 31,360 KB
実行使用メモリ 489,760 KB
最終ジャッジ日時 2024-10-10 10:03:13
合計ジャッジ時間 82,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,685 ms
196,736 KB
testcase_01 AC 3,947 ms
489,568 KB
testcase_02 AC 1,637 ms
196,736 KB
testcase_03 AC 1,652 ms
196,608 KB
testcase_04 AC 1,673 ms
196,736 KB
testcase_05 AC 1,664 ms
196,736 KB
testcase_06 AC 1,680 ms
201,088 KB
testcase_07 AC 2,012 ms
252,544 KB
testcase_08 AC 3,765 ms
481,296 KB
testcase_09 AC 3,527 ms
443,520 KB
testcase_10 AC 3,677 ms
464,128 KB
testcase_11 AC 3,769 ms
478,068 KB
testcase_12 AC 3,809 ms
484,584 KB
testcase_13 AC 3,811 ms
488,096 KB
testcase_14 AC 3,855 ms
488,964 KB
testcase_15 AC 3,862 ms
489,240 KB
testcase_16 AC 3,861 ms
489,412 KB
testcase_17 AC 3,897 ms
489,628 KB
testcase_18 AC 3,855 ms
489,544 KB
testcase_19 AC 3,952 ms
489,760 KB
testcase_20 AC 3,848 ms
489,744 KB
testcase_21 AC 3,880 ms
489,668 KB
testcase_22 AC 2,055 ms
255,360 KB
testcase_23 AC 2,482 ms
313,984 KB
testcase_24 AC 2,957 ms
372,352 KB
testcase_25 AC 3,407 ms
430,976 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:26:1: warning: return type defaults to 'int' [-Wimplicit-int]
   26 | main(){
      | ^~~~
main.c: In function 'main':
main.c:30:9: warning: implicit declaration of function 'read'; did you mean 'rd'? [-Wimplicit-function-declaration]
   30 |         read(0,rbuf,sizeof rbuf);
      |         ^~~~
      |         rd
main.c:54:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   54 |         write(1,wp,wbuf+sizeof wbuf-wp);
      |         ^~~~~
main.c:55:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   55 |         _exit(0);
      |         ^~~~~
      |         _Exit

ソースコード

diff #

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

char*mmap();
#define rd(v) int v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;}

#define wt_rev(v) {long _z=v;do*--wp=_z%10+48;while(_z/=10);}

#define SIEVE_N 50000001
int sieve[SIEVE_N];
void mksieve(){
	for(int i=2;i<SIEVE_N;++i){
		if(sieve[i]==0){
			for(int j=i;j<SIEVE_N;j+=i){
				if(sieve[j]==0){
					sieve[j]=i;
				}
			}
		}
	}
}

int cac[50000001];
short count[50000001];

main(){
	mksieve();

	char rbuf[64],*rp=rbuf;
	read(0,rbuf,sizeof rbuf);
	rd(n);
	
	int res=0;
	for(int i=1;i<=n;++i){
		int j=i;
		int l=1;
		while(j>1){
			int p=sieve[j];
			j/=p;
			if(sieve[j]==p){
				l*=cac[j/p];
				break;
			}
			l*=p;
		}

		cac[i]=l;
		count[l]+=1;
		res+=count[l]*2-1;
	}

	char wbuf[64],*wp=wbuf+sizeof wbuf;
	wt_rev(res);
	write(1,wp,wbuf+sizeof wbuf-wp);
	_exit(0);
}
0