結果

問題 No.1278 どんな級数?
ユーザー kozykozy
提出日時 2020-10-29 23:22:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 303 bytes
コンパイル時間 519 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 104,652 KB
最終ジャッジ日時 2024-11-08 08:27:15
合計ジャッジ時間 68,949 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 958 ms
56,632 KB
testcase_02 AC 960 ms
56,252 KB
testcase_03 AC 963 ms
56,664 KB
testcase_04 AC 962 ms
56,252 KB
testcase_05 AC 967 ms
56,248 KB
testcase_06 AC 965 ms
56,500 KB
testcase_07 AC 971 ms
56,640 KB
testcase_08 AC 963 ms
56,892 KB
testcase_09 AC 960 ms
56,760 KB
testcase_10 AC 959 ms
56,132 KB
testcase_11 AC 958 ms
56,260 KB
testcase_12 AC 963 ms
56,636 KB
testcase_13 AC 958 ms
56,508 KB
testcase_14 AC 979 ms
56,632 KB
testcase_15 AC 961 ms
56,504 KB
testcase_16 AC 954 ms
56,520 KB
testcase_17 AC 958 ms
56,820 KB
testcase_18 AC 952 ms
56,504 KB
testcase_19 AC 959 ms
56,124 KB
testcase_20 AC 971 ms
56,252 KB
testcase_21 AC 958 ms
56,504 KB
testcase_22 AC 958 ms
56,640 KB
testcase_23 AC 986 ms
56,640 KB
testcase_24 AC 961 ms
56,900 KB
testcase_25 AC 964 ms
56,644 KB
testcase_26 AC 972 ms
56,632 KB
testcase_27 AC 973 ms
56,772 KB
testcase_28 AC 965 ms
56,380 KB
testcase_29 AC 953 ms
56,896 KB
testcase_30 AC 960 ms
56,256 KB
testcase_31 AC 956 ms
56,384 KB
testcase_32 AC 954 ms
56,760 KB
testcase_33 AC 956 ms
56,380 KB
testcase_34 AC 953 ms
56,384 KB
testcase_35 AC 955 ms
57,148 KB
testcase_36 AC 965 ms
56,636 KB
testcase_37 AC 953 ms
56,252 KB
testcase_38 AC 957 ms
56,256 KB
testcase_39 AC 948 ms
56,764 KB
testcase_40 AC 953 ms
57,272 KB
testcase_41 AC 949 ms
56,260 KB
testcase_42 AC 968 ms
56,888 KB
testcase_43 AC 958 ms
57,160 KB
testcase_44 AC 957 ms
56,760 KB
testcase_45 AC 956 ms
56,636 KB
testcase_46 AC 951 ms
56,764 KB
testcase_47 AC 961 ms
56,640 KB
testcase_48 AC 952 ms
56,388 KB
testcase_49 AC 955 ms
56,760 KB
testcase_50 AC 958 ms
56,388 KB
testcase_51 AC 963 ms
56,264 KB
testcase_52 AC 972 ms
56,768 KB
testcase_53 AC 971 ms
56,760 KB
testcase_54 AC 972 ms
56,896 KB
testcase_55 AC 972 ms
56,636 KB
testcase_56 AC 978 ms
56,904 KB
testcase_57 AC 988 ms
56,476 KB
testcase_58 AC 963 ms
56,636 KB
testcase_59 AC 977 ms
56,636 KB
testcase_60 AC 963 ms
56,632 KB
testcase_61 AC 959 ms
56,248 KB
testcase_62 AC 971 ms
56,896 KB
testcase_63 AC 954 ms
56,764 KB
testcase_64 AC 956 ms
104,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#aaaaaaaaaaaaaaaaaaaaaaaaa
import scipy.special as f;
def zeta(s):
    return f.zeta(s)
x,n=map(int,input().split())
if x==1:
    print((pow(2,n+1)-1)/(pow(2,n+1)))
else:
    if n==1:
        print("0.5")
    elif n==2:
        print("0.644934033")
    else:
        print((n-1)*zeta(n)-(n-2)*zeta(n-1))
0