結果

問題 No.1539 不可欠な部分
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-04 15:51:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 869 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-04-29 16:21:29
合計ジャッジ時間 28,165 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
56,192 KB
testcase_01 AC 605 ms
77,696 KB
testcase_02 AC 681 ms
77,440 KB
testcase_03 AC 350 ms
77,184 KB
testcase_04 AC 312 ms
77,568 KB
testcase_05 AC 263 ms
77,312 KB
testcase_06 AC 381 ms
77,056 KB
testcase_07 AC 158 ms
77,056 KB
testcase_08 AC 248 ms
77,312 KB
testcase_09 AC 597 ms
77,312 KB
testcase_10 AC 640 ms
77,440 KB
testcase_11 AC 670 ms
77,952 KB
testcase_12 AC 660 ms
77,056 KB
testcase_13 AC 661 ms
77,568 KB
testcase_14 AC 662 ms
77,184 KB
testcase_15 AC 661 ms
77,440 KB
testcase_16 AC 869 ms
77,184 KB
testcase_17 AC 858 ms
77,184 KB
testcase_18 AC 673 ms
77,312 KB
testcase_19 AC 654 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline


x = 1/(math.e*math.pi*math.pi)

def g(t,N):
    return math.exp(math.cos(t/N))
    
def f(N):
    S = g(0,N)+g(x,N)
    
    for i in range(1,64):
        S += g(x*i/64,N)*2
    return x*S/128

for _ in range(int(input())):
    print(f(int(input())))
0