結果

問題 No.1514 Squared Matching
ユーザー kotatsugamekotatsugame
提出日時 2021-05-21 21:44:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 554 ms / 4,000 ms
コード長 364 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 68,820 KB
実行使用メモリ 394,156 KB
最終ジャッジ日時 2024-10-10 08:17:09
合計ジャッジ時間 13,248 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 267 ms
199,744 KB
testcase_01 AC 545 ms
394,156 KB
testcase_02 AC 274 ms
198,984 KB
testcase_03 AC 273 ms
200,516 KB
testcase_04 AC 278 ms
199,488 KB
testcase_05 AC 278 ms
199,752 KB
testcase_06 AC 285 ms
202,948 KB
testcase_07 AC 325 ms
236,996 KB
testcase_08 AC 538 ms
387,652 KB
testcase_09 AC 482 ms
364,356 KB
testcase_10 AC 507 ms
379,080 KB
testcase_11 AC 526 ms
385,604 KB
testcase_12 AC 529 ms
390,056 KB
testcase_13 AC 551 ms
392,520 KB
testcase_14 AC 552 ms
393,924 KB
testcase_15 AC 539 ms
394,148 KB
testcase_16 AC 544 ms
394,152 KB
testcase_17 AC 534 ms
394,152 KB
testcase_18 AC 541 ms
394,052 KB
testcase_19 AC 549 ms
394,024 KB
testcase_20 AC 554 ms
393,920 KB
testcase_21 AC 537 ms
394,148 KB
testcase_22 AC 313 ms
238,152 KB
testcase_23 AC 361 ms
277,188 KB
testcase_24 AC 418 ms
317,248 KB
testcase_25 AC 500 ms
355,648 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:8:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    8 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<map>
using namespace std;
int N;
const int LIM=5e7;
int isp[LIM+1];
int mp[LIM+1];
main()
{
	for(int i=2;i*i<=LIM;i++)
	{
		for(int j=i*i;j<=LIM;j+=i*i)isp[j]=i*i;
	}
	cin>>N;
	for(int i=1;i<=N;i++)
	{
		int t=i;
		while(isp[t]>0)t/=isp[t];
		mp[t]++;
	}
	long ans=0;
	for(int i=1;i<=LIM;i++)ans+=(long)mp[i]*mp[i];
	cout<<ans<<endl;
}
0