結果

問題 No.1271 初めての級数
ユーザー tsuishitsuishi
提出日時 2020-12-24 15:42:14
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 1,948 bytes
コンパイル時間 870 ms
コンパイル使用メモリ 29,324 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-21 15:42:33
合計ジャッジ時間 3,054 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
4,348 KB
testcase_01 AC 151 ms
4,348 KB
testcase_02 AC 152 ms
4,348 KB
testcase_03 AC 152 ms
4,348 KB
testcase_04 AC 152 ms
4,348 KB
testcase_05 AC 151 ms
4,348 KB
testcase_06 AC 151 ms
4,348 KB
testcase_07 AC 152 ms
4,348 KB
testcase_08 AC 151 ms
4,348 KB
testcase_09 AC 151 ms
4,348 KB
testcase_10 AC 151 ms
4,348 KB
testcase_11 AC 152 ms
4,348 KB
testcase_12 AC 151 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
// ***********************
// for debug
#define DEBUGz


#define NOP do{}while(0)
#ifdef DEBUG
#define TRACE(...) do{printf(__VA_ARGS__);fflush(stdout);}while(0)
#define TRACECR do{printf("\n");fflush(stdout);}while(0)
#else
#define TRACE(...) NOP
#define TRACECR NOP
#endif

#define PRINCR printf("\n")
#define NOCR(strig) do{char *p;p=strchr(strig,'\n');if(p)*p='\0';}while(0)
// The out-of-date function
#define	asctime(...)	asctime_s(...)
#define	atof(a)		strtod(a,'\0')
#define	atoi(a)		((int)strtol(a,'\0'))
#define	atol(a)		strtol(a,'\0')
#define	ctime(...)		ctime_s(...)
//#define	fopen(...)		fopen_s(...)
//#define	freopen(...)	freopen_s(...)
//#define	rewind(a)		fseek(a,0L,SEEK_SET)
//#define	setbuf(a,b)		setvbuf(a,b,_IOFBF,BUFSIZ)

// for stdio
#define INPUT(str) do{char *p;fgets(str,sizeof(str),stdin);p=strchr(str,'\n');if(p)*p='\0';}while(0)
static char *getinput( char* str );

// for readaility
typedef	long long	lolong;
const int	INF = 1e9;
const int	MOD = 1e9+7;
const lolong	LINF = 1e18;
#define	YES(a)	printf("%s",((a)?"YES":"NO"))
#define	Yes(a)	printf("%s",((a)?"Yes":"No"))
#define OK(a)	printf("%s",((a)?"OK":"NG"))
#define Ok(a)	printf("%s",((a)?"Ok":"Ng"))
#define	POSSIBLE(a)		printf("%s",((a)?"POSSIBLE":"IMPOSSIBLE"))
#define	Possible(a)		printf("%s",((a)?"Possible":"Impossible"))
#define SWAP(type,a,b) do{type _c;_c=a;a=b;b=_c;}while(0)
#define REP(a,b) for(int a=0;a<(int)(b);++a)
#define REP1(a,b) for(int a=1;a<=(b);++a)
#define FLOOP(a,b) for(a=0;a<(b);++a)
#define FLOOP1(a,b) for(a=1;a<=(b);++a)

// ***********************
// ***********************
// ***********************
int main(void){
	char str[17];
	long	k;
	double val;
	// init
	// ready
	INPUT(str); sscanf( str , "%ld", &k );
	// start
	val = 0.;
	for(long i= 1L ; i < 100000000L ;i++) {
		val += ( (double)1. / (double)( i * ( i + k ) ) );
	}

	printf("%0.16lf\n",val);
	return 0;
}
0