結果

問題 No.613 Solitude by the window
ユーザー tailstails
提出日時 2017-12-12 23:52:57
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 348 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 29,312 KB
実行使用メモリ 13,756 KB
最終ジャッジ日時 2024-05-08 05:37:27
合計ジャッジ時間 3,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
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.c: In function 'f':
main.c:7:5: warning: type of 'x' defaults to 'int' [-Wimplicit-int]
    7 | int f(x){
      |     ^
main.c: At top level:
main.c:11:1: warning: return type defaults to 'int' [-Wimplicit-int]
   11 | main(){
      | ^~~~
main.c: In function 'main':
main.c:12:9: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration]
   12 |         scanf("%lld%d",&n,&m);
      |         ^~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf'
  +++ |+#include <stdio.h>
    1 | typedef long long ll;
main.c:12:9: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch]
   12 |         scanf("%lld%d",&n,&m);
      |         ^~~~~
main.c:12:9: note: include '<stdio.h>' or provide a declaration of 'scanf'
main.c:13:9: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
   13 |         printf("%lld,%d\n",n,m);
      |         ^~~~~~
main.c:13:9: note: include '<stdio.h>' or provide a declaration of 'printf'
main.c:13:9: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch]
main.c:13:9: note: include '<stdio.h>' or provide a declaration of 'printf'

ソースコード

diff #

typedef long long ll;
ll n;
int m;
int a,b;
int l;

int f(x){
	return (ll)x*(x+4)%m;
}

main(){
	scanf("%lld%d",&n,&m);
	printf("%lld,%d\n",n,m);
	a=2;
	b=2;
	l=0;
	for(;n>0;){
		a=f(a);
		b=f(f(b));
		--n;
		if(a==b)break;
	}
	for(;n>0;){
		a=f(a);
		++l;
		--n;
		if(a==b)break;
	}
	if(n)n%=l;
	for(;n>0;){
		a=f(a);
		--n;
	}
	printf("%d",a);
}
0