結果

問題 No.1278 どんな級数?
ユーザー hirose_golfhirose_golf
提出日時 2020-10-30 22:23:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,725 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 113,528 KB
最終ジャッジ日時 2024-07-22 01:30:58
合計ジャッジ時間 72,385 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,725 ms
56,380 KB
testcase_01 AC 1,042 ms
56,252 KB
testcase_02 AC 1,042 ms
55,736 KB
testcase_03 AC 1,040 ms
55,996 KB
testcase_04 AC 1,038 ms
55,708 KB
testcase_05 AC 1,040 ms
56,008 KB
testcase_06 AC 1,040 ms
55,992 KB
testcase_07 AC 1,035 ms
55,996 KB
testcase_08 AC 1,036 ms
55,612 KB
testcase_09 AC 1,029 ms
55,996 KB
testcase_10 AC 1,029 ms
55,996 KB
testcase_11 AC 1,043 ms
56,380 KB
testcase_12 AC 1,028 ms
55,996 KB
testcase_13 AC 991 ms
56,256 KB
testcase_14 AC 1,018 ms
56,000 KB
testcase_15 AC 1,000 ms
56,120 KB
testcase_16 AC 1,005 ms
55,740 KB
testcase_17 AC 1,000 ms
55,996 KB
testcase_18 AC 1,010 ms
56,380 KB
testcase_19 AC 1,000 ms
55,992 KB
testcase_20 AC 999 ms
55,988 KB
testcase_21 AC 980 ms
56,204 KB
testcase_22 AC 985 ms
55,744 KB
testcase_23 AC 998 ms
55,992 KB
testcase_24 AC 1,012 ms
56,248 KB
testcase_25 AC 995 ms
56,252 KB
testcase_26 AC 999 ms
56,504 KB
testcase_27 AC 1,037 ms
55,736 KB
testcase_28 AC 998 ms
56,004 KB
testcase_29 AC 1,008 ms
56,008 KB
testcase_30 AC 1,016 ms
55,740 KB
testcase_31 AC 1,017 ms
56,124 KB
testcase_32 AC 1,005 ms
55,864 KB
testcase_33 AC 1,023 ms
56,380 KB
testcase_34 AC 1,036 ms
55,996 KB
testcase_35 AC 1,012 ms
55,996 KB
testcase_36 AC 1,001 ms
56,380 KB
testcase_37 AC 994 ms
55,864 KB
testcase_38 AC 1,009 ms
56,124 KB
testcase_39 AC 993 ms
55,992 KB
testcase_40 AC 1,006 ms
55,872 KB
testcase_41 AC 1,019 ms
55,868 KB
testcase_42 AC 1,022 ms
56,380 KB
testcase_43 AC 1,024 ms
55,996 KB
testcase_44 AC 1,021 ms
56,380 KB
testcase_45 AC 1,033 ms
55,996 KB
testcase_46 AC 1,028 ms
55,736 KB
testcase_47 AC 1,018 ms
55,748 KB
testcase_48 AC 1,024 ms
56,000 KB
testcase_49 AC 1,014 ms
55,996 KB
testcase_50 AC 1,019 ms
56,248 KB
testcase_51 AC 1,011 ms
56,380 KB
testcase_52 AC 1,022 ms
55,736 KB
testcase_53 AC 1,023 ms
56,508 KB
testcase_54 AC 1,008 ms
56,236 KB
testcase_55 AC 1,019 ms
55,860 KB
testcase_56 AC 1,017 ms
56,128 KB
testcase_57 AC 1,019 ms
56,244 KB
testcase_58 AC 1,026 ms
56,124 KB
testcase_59 AC 1,007 ms
55,872 KB
testcase_60 AC 1,010 ms
55,736 KB
testcase_61 AC 1,022 ms
56,120 KB
testcase_62 AC 1,042 ms
55,868 KB
testcase_63 AC 1,029 ms
56,252 KB
testcase_64 AC 1,008 ms
113,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.special import zeta

def main():
    X,K=map(int, input().split())
    if X==1:
        print(1-1/2**(K+1))
    if X==2:
        if K==1:
            print(1/2)
        elif K==2:
            print(zeta(2)-1)
        else:
            print((K-1)*zeta(K)  - (K-2)*zeta(K-1))

main()
0