結果

問題 No.1339 循環小数
ユーザー kotatsugamekotatsugame
提出日時 2021-01-15 22:48:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 65,372 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-17 18:05:51
合計ジャッジ時間 2,628 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 3 ms
4,376 KB
testcase_12 AC 3 ms
4,384 KB
testcase_13 AC 3 ms
4,376 KB
testcase_14 AC 3 ms
4,380 KB
testcase_15 AC 3 ms
4,376 KB
testcase_16 AC 3 ms
4,376 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 3 ms
4,380 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 3 ms
4,380 KB
testcase_21 AC 34 ms
4,380 KB
testcase_22 AC 36 ms
4,376 KB
testcase_23 AC 36 ms
4,380 KB
testcase_24 AC 33 ms
4,376 KB
testcase_25 AC 37 ms
4,380 KB
testcase_26 AC 36 ms
4,380 KB
testcase_27 AC 37 ms
4,380 KB
testcase_28 AC 36 ms
4,380 KB
testcase_29 AC 32 ms
4,376 KB
testcase_30 AC 33 ms
4,380 KB
testcase_31 AC 75 ms
4,376 KB
testcase_32 AC 77 ms
4,380 KB
testcase_33 AC 37 ms
4,376 KB
testcase_34 AC 15 ms
4,380 KB
testcase_35 AC 68 ms
4,376 KB
testcase_36 AC 36 ms
4,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:6:1: 警告: ISO C++ では型の無い ‘main’ の宣言を禁止しています [-Wreturn-type]
    6 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int gcd(int a,int b){return b?gcd(b,a%b):a;}
long mp(long a,long b,long m){return b?mp(a*a%m,b/2,m)*(b%2?a:1)%m:1;}
int T,N;
main()
{
	cin>>T;
	for(;T--;)
	{
		cin>>N;
		while(N%2==0)N/=2;
		while(N%5==0)N/=5;
		if(N==1)
		{
			cout<<1<<endl;
			continue;
		}
		long X=N;
		long t=X;
		for(int i=2;i*i<=X;i++)if(X%i==0)
		{
			while(X%i==0)X/=i;
			t=t/i*(i-1);
		}
		if(X>1)t=t/X*(X-1);
		long ans=t;
		for(int i=1;i*i<=t;i++)if(t%i==0)
		{
			if(mp(10,i,N)==1&&ans>i)ans=i;
			if(mp(10,t/i,N)==1&&ans>t/i)ans=t/i;
		}
		cout<<ans<<endl;
	}
}
0