結果

問題 No.1968 Distance
ユーザー tailstails
提出日時 2022-06-03 22:42:14
言語 cLay
(20240104-1)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 3,586 ms
コンパイル使用メモリ 176,116 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-21 02:09:53
合計ジャッジ時間 3,650 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 2 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 2 ms
4,348 KB
testcase_16 AC 2 ms
4,348 KB
testcase_17 AC 3 ms
4,348 KB
testcase_18 AC 2 ms
4,348 KB
testcase_19 AC 2 ms
4,348 KB
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 2 ms
4,348 KB
testcase_22 AC 2 ms
4,348 KB
testcase_23 AC 2 ms
4,348 KB
testcase_24 AC 2 ms
4,348 KB
testcase_25 AC 2 ms
4,348 KB
testcase_26 AC 2 ms
4,348 KB
testcase_27 AC 3 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353

ll n;

Mint f(Mint x1,Mint x2,ll a){
	Mint y1=1/x1;
	Mint y2=(x2==0?x2:1/x2);
	Mint d=y1-y2;
	Mint c1=(y1+y2)/2;
	Mint c2=1-c1;
	ll n1=0,n2=0;
	ll f=0;
	while(n1+n2<n){
		if(a){
			--a;
		}else{
			f=!f;
		}
		if(f){
			n1+=n1+1;
			c1/=2;
		}else{
			n2+=n2+1;
			c2/=2;
		}
	}
	return d*(a||f?c1:c2);
}

{
	rd(n);
	Mint z;
	rep(i,42){
		z+=f(1+Mint(2)**i,1+Mint(2)**(i+1),i+1);
	}
	z+=f(1+Mint(2)**42,0,43);
	wt(z*2);
}
0