結果

問題 No.300 平方数
ユーザー kongarishisyamokongarishisyamo
提出日時 2016-05-02 04:39:27
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 625 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 60,512 KB
実行使用メモリ 75,916 KB
最終ジャッジ日時 2024-10-05 02:12:27
合計ジャッジ時間 38,417 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 786 ms
75,664 KB
testcase_01 AC 773 ms
75,660 KB
testcase_02 AC 787 ms
75,792 KB
testcase_03 AC 779 ms
75,788 KB
testcase_04 AC 789 ms
75,660 KB
testcase_05 AC 816 ms
75,664 KB
testcase_06 AC 789 ms
75,792 KB
testcase_07 AC 807 ms
75,784 KB
testcase_08 AC 832 ms
75,788 KB
testcase_09 AC 809 ms
75,660 KB
testcase_10 AC 798 ms
75,788 KB
testcase_11 AC 789 ms
75,916 KB
testcase_12 AC 805 ms
75,660 KB
testcase_13 AC 787 ms
75,788 KB
testcase_14 AC 782 ms
75,660 KB
testcase_15 AC 774 ms
75,788 KB
testcase_16 AC 772 ms
75,788 KB
testcase_17 AC 787 ms
75,660 KB
testcase_18 AC 792 ms
75,788 KB
testcase_19 AC 777 ms
75,660 KB
testcase_20 WA -
testcase_21 AC 796 ms
75,792 KB
testcase_22 AC 806 ms
75,660 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 756 ms
75,784 KB
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 759 ms
75,916 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

#define MAX (50000000)
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