結果

問題 No.300 平方数
ユーザー kongarishisyamokongarishisyamo
提出日時 2016-05-02 04:40:37
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 625 bytes
コンパイル時間 514 ms
コンパイル使用メモリ 60,740 KB
実行使用メモリ 36,256 KB
最終ジャッジ日時 2024-10-05 01:57:17
合計ジャッジ時間 9,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 186 ms
34,208 KB
testcase_01 AC 191 ms
34,204 KB
testcase_02 AC 179 ms
34,332 KB
testcase_03 AC 184 ms
34,208 KB
testcase_04 AC 180 ms
34,200 KB
testcase_05 AC 193 ms
34,208 KB
testcase_06 AC 182 ms
34,080 KB
testcase_07 AC 207 ms
34,204 KB
testcase_08 AC 182 ms
34,076 KB
testcase_09 AC 173 ms
34,080 KB
testcase_10 AC 176 ms
34,208 KB
testcase_11 AC 187 ms
34,204 KB
testcase_12 AC 186 ms
34,080 KB
testcase_13 AC 174 ms
34,076 KB
testcase_14 AC 179 ms
34,076 KB
testcase_15 AC 177 ms
34,200 KB
testcase_16 AC 177 ms
34,200 KB
testcase_17 AC 179 ms
33,952 KB
testcase_18 AC 180 ms
34,208 KB
testcase_19 AC 181 ms
35,996 KB
testcase_20 WA -
testcase_21 AC 177 ms
33,944 KB
testcase_22 AC 173 ms
34,080 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 165 ms
34,200 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 176 ms
34,204 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cmath>
#include<algorithm>

using namespace std;

#define MAX (20000000)
bool hurui[MAX+1];
long long p[3000000];
long long pn=0;
long long N;

int main(){

    for(long long i=0;i<MAX+1;i++) hurui[i]=0;

    for(long long i=2;i<=MAX;i++){
        if(hurui[i]==0){
            for(long long j=i;j<=MAX;j+=i){
                hurui[j]=1;
            }
            p[pn]=i;
            pn++;
        }
    }

	cin>>N;

    long long ans=1;
	for(int i=0;i<pn;i++){
		if(N%p[i]==0){
			long long c=0;
			while(N%p[i]==0){
				N/=p[i];
				c++;
			}
			if(c%2==1) ans*=p[i];
		}
	}

	cout<<ans<<endl;
}
0