結果

問題 No.1339 循環小数
ユーザー tailstails
提出日時 2021-01-15 22:20:36
言語 cLay
(20240714-1)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 9,113 ms
コンパイル使用メモリ 222,184 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-07-05 14:57:25
合計ジャッジ時間 10,377 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
8,448 KB
testcase_01 AC 8 ms
8,448 KB
testcase_02 AC 9 ms
8,448 KB
testcase_03 AC 9 ms
8,448 KB
testcase_04 AC 9 ms
8,448 KB
testcase_05 AC 10 ms
8,320 KB
testcase_06 AC 9 ms
8,320 KB
testcase_07 AC 9 ms
8,448 KB
testcase_08 AC 9 ms
8,448 KB
testcase_09 AC 9 ms
8,448 KB
testcase_10 AC 8 ms
8,448 KB
testcase_11 AC 9 ms
8,448 KB
testcase_12 AC 10 ms
8,448 KB
testcase_13 AC 9 ms
8,448 KB
testcase_14 AC 9 ms
8,448 KB
testcase_15 AC 10 ms
8,448 KB
testcase_16 AC 9 ms
8,320 KB
testcase_17 AC 10 ms
8,448 KB
testcase_18 AC 9 ms
8,320 KB
testcase_19 AC 9 ms
8,448 KB
testcase_20 AC 9 ms
8,448 KB
testcase_21 AC 17 ms
8,448 KB
testcase_22 AC 17 ms
8,448 KB
testcase_23 AC 18 ms
8,448 KB
testcase_24 AC 17 ms
8,448 KB
testcase_25 AC 19 ms
8,448 KB
testcase_26 AC 20 ms
8,448 KB
testcase_27 AC 18 ms
8,320 KB
testcase_28 AC 18 ms
8,320 KB
testcase_29 AC 16 ms
8,448 KB
testcase_30 AC 17 ms
8,448 KB
testcase_31 AC 45 ms
8,320 KB
testcase_32 AC 45 ms
8,448 KB
testcase_33 AC 18 ms
8,448 KB
testcase_34 AC 9 ms
8,320 KB
testcase_35 AC 42 ms
8,448 KB
testcase_36 AC 19 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll euler(ll a){
	ll p=a;
	ll i=2;
	while(a>1){
		if(a%i==0){
			p-=p/i;
		}
		while(a%i==0){
			a/=i;
		}
		++i;
		if(i*i>a){
			i=a;
		}
	}
	return p;
}


ll d[1d5];
{
	ll@t;
	rep(t){
		ll@n;
		while(n%2==0) n/=2;
		while(n%5==0) n/=5;
		if(n==1) wt(1),continue;
		Divisor(euler(n),d);
		modint x;
		x.setmod(n);
		ll a=0;
		while(1){
			x=10;
			x**=d[a];
			if(x==1) break;
			++a;
		}
		wt(d[a]);
	}
}
0