結果

問題 No.1514 Squared Matching
ユーザー tailstails
提出日時 2021-05-21 23:06:18
言語 C
(gcc 12.3.0)
結果
TLE  
実行時間 -
コード長 843 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 31,232 KB
実行使用メモリ 587,376 KB
最終ジャッジ日時 2024-10-10 09:59:35
合計ジャッジ時間 87,780 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,657 ms
198,868 KB
testcase_01 TLE -
testcase_02 AC 1,751 ms
198,872 KB
testcase_03 AC 1,715 ms
198,740 KB
testcase_04 AC 1,706 ms
198,744 KB
testcase_05 AC 1,699 ms
198,740 KB
testcase_06 AC 1,765 ms
203,916 KB
testcase_07 AC 2,138 ms
272,792 KB
testcase_08 TLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 2,146 ms
276,736 KB
testcase_23 AC 2,609 ms
354,640 KB
testcase_24 AC 3,062 ms
431,640 KB
testcase_25 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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];
int 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