結果

問題 No.1255 ハイレーツ・オブ・ボリビアン
ユーザー tailstails
提出日時 2020-10-09 23:15:37
言語 cLay
(20240714-1)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 509 bytes
コンパイル時間 8,719 ms
コンパイル使用メモリ 222,964 KB
実行使用メモリ 11,716 KB
最終ジャッジ日時 2024-07-05 14:33:28
合計ジャッジ時間 8,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
8,448 KB
testcase_01 AC 9 ms
8,320 KB
testcase_02 AC 9 ms
8,448 KB
testcase_03 AC 9 ms
8,320 KB
testcase_04 AC 9 ms
8,448 KB
testcase_05 AC 9 ms
8,320 KB
testcase_06 AC 9 ms
8,448 KB
testcase_07 AC 9 ms
8,576 KB
testcase_08 AC 18 ms
8,320 KB
testcase_09 AC 20 ms
8,448 KB
testcase_10 AC 19 ms
8,320 KB
testcase_11 AC 19 ms
8,448 KB
testcase_12 AC 18 ms
8,448 KB
testcase_13 AC 10 ms
8,320 KB
testcase_14 AC 58 ms
8,320 KB
testcase_15 WA -
権限があれば一括ダウンロードができます

ソースコード

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[1000];

{
	ll @t;
	rep(t){
		ll @n;
		ll e=euler(2n-1);
		ll m=Divisor(e,d);
		//wtF("n={n} e={e}\n");
		modint x;
		x.setmod(2n-1);
		x=2;
		rep[d](j,m){
			//wt(" j=",j,x**j);
			if(x**j==1){
				wt(j);
				break_continue;
			}
		}
		rep(j,1,1d8){
			if(x**j==1){
				wt(j);
				break_continue;
			}
		}
		wt(0);
	}
}
0