結果

問題 No.2552 Not Coprime, Not Divisor
ユーザー cho435cho435
提出日時 2023-12-05 23:15:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 614 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 2,559 ms
コンパイル使用メモリ 200,188 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-27 00:28:58
合計ジャッジ時間 8,548 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 208 ms
5,248 KB
testcase_01 AC 444 ms
5,248 KB
testcase_02 AC 165 ms
5,376 KB
testcase_03 AC 437 ms
5,376 KB
testcase_04 AC 443 ms
5,376 KB
testcase_05 AC 52 ms
5,376 KB
testcase_06 AC 496 ms
5,376 KB
testcase_07 AC 568 ms
5,376 KB
testcase_08 AC 346 ms
5,376 KB
testcase_09 AC 614 ms
5,376 KB
testcase_10 AC 141 ms
5,376 KB
testcase_11 AC 293 ms
5,376 KB
testcase_12 AC 589 ms
5,376 KB
testcase_13 AC 188 ms
5,376 KB
testcase_14 AC 108 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 87 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for(int i=0;i<(int)(n);i++)

int totient(int x){
	int ret = x;
	for(int p=2;p*p<=x;p++){
		if(x%p==0){
			ret -= ret/p;
			while(x%p==0) x/=p;
		}
	}
	if(x!=1) ret -= ret/x;
	return ret;
}

int main(){
	ll n;
	cin>>n;
	ll ans=0;
	ans+=n*(n-1)/2;
	for(int i=2;i<=n;i++){
		ans-=totient(i);
	}
	for(int i=2;i<=n;i++){
		ans-=n/i-1;
	}
	cout<<ans<<endl;
}
0