結果

問題 No.613 Solitude by the window
ユーザー heyshbheyshb
提出日時 2017-12-13 23:16:12
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,014 bytes
コンパイル時間 1,337 ms
コンパイル使用メモリ 159,456 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-05-08 08:00:25
合計ジャッジ時間 4,750 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,448 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:37:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   37 |         scanf("%lld",&N);
      |         ~~~~~^~~~~~~~~~~
main.cpp:39:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   39 |         scanf("%d",&d);getMagic();
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
#define po2(x) (II(1) << (x))

using namespace std;

typedef long long LL;
typedef __int128 II;

LL Magic;
const int W = 64;
int d,p; 
LL N;

void getMagic()
{
	II x = po2(W-1) - po2(W-1)%d - 1, t;
	for(p=0;t=po2(p),t<=x*(d-t%d);p++);
	if (p < W) p = W, t = po2(W);
	Magic = (t + d - t % d) / d;
}

LL MOD(LL x)
{
	LL t = II(x) * Magic >> W;
	if (Magic < 0) t += x;
	return x - (t >> (p - W)) * d;
}

LL f(LL x)
{
	return MOD(x * (x + 4));
}

int main()
{
	
	scanf("%lld",&N);
	N++;
	scanf("%d",&d);getMagic();
	LL p1 = 2 % d, p2 = 12 % d;
	LL now = 1;
	if (N == 1) return printf("%lld\n",2LL%d),0;
	while(p1 != p2)
	{
		now++;
		p1 = f(p1);
		p2 = f(p2);
		p2 = f(p2);
		if (now == N)
		{
			printf("%lld\n",p1);
			return 0;
		}
	}
	N -= now;
	LL p = p1;
	now = 0;
	while(true)
	{
		now++;
		p1 = f(p1);
		p2 = f(p2);
		p2 = f(p2);
		if (now == N)
		{
			printf("%lld\n",p1);
			return 0;
		}
		if (p1 == p2) break;
	}
	N %= now;
	for (LL i=1;i<=N;i++)
		p = f(p);
	printf("%lld\n",p);
}
0