結果

問題 No.2552 Not Coprime, Not Divisor
ユーザー ゆにぽけゆにぽけ
提出日時 2023-12-04 11:53:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 1,268 ms
コンパイル使用メモリ 128,736 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-26 22:54:11
合計ジャッジ時間 2,654 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
6,656 KB
testcase_01 AC 30 ms
9,344 KB
testcase_02 AC 14 ms
6,016 KB
testcase_03 AC 30 ms
9,216 KB
testcase_04 AC 30 ms
9,344 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 34 ms
9,728 KB
testcase_07 AC 43 ms
10,496 KB
testcase_08 AC 25 ms
8,320 KB
testcase_09 AC 45 ms
11,008 KB
testcase_10 AC 12 ms
5,888 KB
testcase_11 AC 21 ms
7,680 KB
testcase_12 AC 42 ms
10,752 KB
testcase_13 AC 15 ms
6,400 KB
testcase_14 AC 9 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 8 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<cstring>
#include<cassert>
#include<cmath>
#include<ctime>
#include<iomanip>
#include<numeric>
#include<stack>
#include<queue>
#include<map>
#include<unordered_map>
#include<set>
#include<unordered_set>
#include<bitset>
#include<random>
#include<functional>
#include<utility>
using namespace std;
void solve()
{
	int N;
	cin >> N;
	vector<long long> cnt(N+1);
	for(int i = N;i >= 1;i--)
	{
		cnt[i] = (long long)(N/i)*(N/i-1)/2;
		for(int j = i+i;j <= N;j += i) cnt[i] -= cnt[j];
	}
	long long ans = (long long)N*(N-1)/2;
	for(int i = 2;i <= N;i++)
	{
		ans -= N/i-1;
	}
	ans -= cnt[1];
	cout << ans << "\n";
}
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int tt = 1;
	/* cin >> tt; */
	while(tt--) solve();
}
0