結果

問題 No.454 逆2乗和
ユーザー maspymaspy
提出日時 2020-03-23 16:31:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,012 ms / 2,000 ms
コード長 63 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 58,632 KB
最終ジャッジ日時 2024-06-07 22:58:59
合計ジャッジ時間 35,012 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 931 ms
58,632 KB
testcase_01 AC 947 ms
58,116 KB
testcase_02 AC 945 ms
57,860 KB
testcase_03 AC 973 ms
57,988 KB
testcase_04 AC 951 ms
58,240 KB
testcase_05 AC 932 ms
58,116 KB
testcase_06 AC 939 ms
57,860 KB
testcase_07 AC 941 ms
58,120 KB
testcase_08 AC 943 ms
58,120 KB
testcase_09 AC 912 ms
57,984 KB
testcase_10 AC 916 ms
57,732 KB
testcase_11 AC 942 ms
58,244 KB
testcase_12 AC 937 ms
57,984 KB
testcase_13 AC 937 ms
58,368 KB
testcase_14 AC 967 ms
57,732 KB
testcase_15 AC 1,012 ms
58,492 KB
testcase_16 AC 968 ms
57,988 KB
testcase_17 AC 952 ms
57,984 KB
testcase_18 AC 926 ms
57,988 KB
testcase_19 AC 948 ms
58,108 KB
testcase_20 AC 962 ms
58,116 KB
testcase_21 AC 945 ms
57,988 KB
testcase_22 AC 952 ms
57,864 KB
testcase_23 AC 934 ms
57,860 KB
testcase_24 AC 943 ms
57,860 KB
testcase_25 AC 925 ms
58,116 KB
testcase_26 AC 933 ms
58,112 KB
testcase_27 AC 933 ms
57,852 KB
testcase_28 AC 926 ms
57,992 KB
testcase_29 AC 928 ms
57,712 KB
testcase_30 AC 907 ms
58,240 KB
testcase_31 AC 910 ms
57,732 KB
testcase_32 AC 921 ms
58,248 KB
testcase_33 AC 919 ms
58,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.special import*
print(polygamma(1,float(input())+1))
0