結果

問題 No.1539 不可欠な部分
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2022-09-04 15:51:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 960 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,084 KB
最終ジャッジ日時 2024-11-18 21:35:38
合計ジャッジ時間 31,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
56,192 KB
testcase_01 AC 642 ms
77,568 KB
testcase_02 AC 787 ms
77,824 KB
testcase_03 AC 367 ms
77,440 KB
testcase_04 AC 323 ms
77,740 KB
testcase_05 AC 269 ms
77,136 KB
testcase_06 AC 409 ms
77,936 KB
testcase_07 AC 161 ms
77,072 KB
testcase_08 AC 256 ms
77,072 KB
testcase_09 AC 630 ms
77,440 KB
testcase_10 AC 662 ms
78,084 KB
testcase_11 AC 723 ms
77,816 KB
testcase_12 AC 731 ms
77,428 KB
testcase_13 AC 733 ms
77,440 KB
testcase_14 AC 729 ms
77,952 KB
testcase_15 AC 730 ms
77,420 KB
testcase_16 AC 960 ms
77,316 KB
testcase_17 AC 943 ms
77,696 KB
testcase_18 AC 719 ms
77,640 KB
testcase_19 AC 719 ms
77,888 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