結果

問題 No.1022 Power Equation
ユーザー chocoruskchocorusk
提出日時 2020-03-06 01:23:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 572 bytes
コンパイル時間 547 ms
コンパイル使用メモリ 68,608 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-08 01:58:09
合計ジャッジ時間 1,045 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cmath>
using namespace std;
typedef long long ll;
int gcd(int a, int b){
	if(b==0) return a;
	return gcd(b, a%b);
}
ll cnt[30], a[30];
ll root(ll n, int k){
	return (ll)pow((long double)n, (long double)(1.0)/k);
}
ll solve(ll n){
	for(int i=1; i<30; i++) a[i]=root(n, i);
	ll ret=n*n;
	for(int i=1; i<30; i++) ret+=n/i*(a[i]-1)*cnt[i];
	return ret;
}
int main()
{
    int t;
	cin>>t;
	for(int i=1; i<30; i++) for(int j=1; j<30; j++) if(gcd(i, j)==1) cnt[max(i, j)]++;
	while(t--){
		ll n;
		cin>>n;
		cout<<solve(n)<<endl;
	}
    return 0;
}
0