結果

問題 No.1408 Nice Dice Game
ユーザー 沙耶花沙耶花
提出日時 2021-02-26 21:49:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 550 bytes
コンパイル時間 3,764 ms
コンパイル使用メモリ 260,536 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-10-02 14:29:33
合計ジャッジ時間 64,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,851 ms
6,816 KB
testcase_01 AC 1,469 ms
6,824 KB
testcase_02 AC 1,339 ms
6,820 KB
testcase_03 AC 1,332 ms
6,816 KB
testcase_04 AC 1,336 ms
6,816 KB
testcase_05 AC 1,346 ms
6,816 KB
testcase_06 AC 1,336 ms
6,816 KB
testcase_07 AC 1,336 ms
6,820 KB
testcase_08 AC 1,334 ms
6,816 KB
testcase_09 AC 1,349 ms
6,820 KB
testcase_10 AC 1,339 ms
6,820 KB
testcase_11 AC 1,337 ms
6,820 KB
testcase_12 AC 1,350 ms
6,820 KB
testcase_13 AC 1,371 ms
6,824 KB
testcase_14 AC 1,350 ms
6,816 KB
testcase_15 AC 1,338 ms
6,816 KB
testcase_16 AC 1,355 ms
6,820 KB
testcase_17 AC 1,345 ms
6,816 KB
testcase_18 AC 1,348 ms
6,816 KB
testcase_19 AC 1,353 ms
6,816 KB
testcase_20 AC 1,349 ms
6,820 KB
testcase_21 AC 1,343 ms
6,820 KB
testcase_22 AC 1,342 ms
6,816 KB
testcase_23 AC 1,376 ms
6,816 KB
testcase_24 AC 1,338 ms
6,820 KB
testcase_25 AC 1,361 ms
6,816 KB
testcase_26 TLE -
testcase_27 AC 1,844 ms
6,944 KB
testcase_28 AC 1,878 ms
6,944 KB
testcase_29 AC 1,856 ms
6,948 KB
testcase_30 AC 1,859 ms
6,940 KB
testcase_31 AC 1,880 ms
6,940 KB
testcase_32 TLE -
testcase_33 AC 1,928 ms
6,940 KB
testcase_34 TLE -
testcase_35 AC 1,836 ms
6,940 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint1000000007;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001


int main(){
	
	int N;
	cin>>N;
	
	double ans = 0.0;
	
	for(double a=1.0;true;a+=1.0){
		if(a>5000000.0)break;
		for(double b=a+1.0;true;b+=1.0){
			if(a*b>5000000.0)break;
			double temp = pow(1.0/a,N) - pow(1.0/b,N);
			temp /= b;
			temp /= b-a;
			ans += temp;
		}
	}
	
	cout<<fixed<<setprecision(10)<<ans<<endl;
	
    return 0;
}
0