結果

問題 No.1539 不可欠な部分
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-04 15:51:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 453 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-11-18 21:33:47
合計ジャッジ時間 53,285 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,128 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 AC 1,763 ms
16,256 KB
testcase_05 AC 1,374 ms
16,512 KB
testcase_06 TLE -
testcase_07 AC 618 ms
16,128 KB
testcase_08 AC 1,316 ms
21,888 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

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