結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 955 ms
58,436 KB
testcase_01 AC 950 ms
58,120 KB
testcase_02 AC 940 ms
58,500 KB
testcase_03 AC 951 ms
58,240 KB
testcase_04 AC 962 ms
57,856 KB
testcase_05 AC 941 ms
57,992 KB
testcase_06 AC 954 ms
58,236 KB
testcase_07 AC 934 ms
57,864 KB
testcase_08 AC 941 ms
58,240 KB
testcase_09 AC 937 ms
57,860 KB
testcase_10 AC 933 ms
57,864 KB
testcase_11 AC 925 ms
57,992 KB
testcase_12 AC 949 ms
58,116 KB
testcase_13 AC 1,017 ms
57,984 KB
testcase_14 AC 950 ms
58,116 KB
testcase_15 AC 936 ms
57,732 KB
testcase_16 AC 929 ms
57,736 KB
testcase_17 AC 928 ms
58,112 KB
testcase_18 AC 938 ms
57,724 KB
testcase_19 AC 949 ms
57,988 KB
testcase_20 AC 961 ms
57,992 KB
testcase_21 AC 935 ms
57,984 KB
testcase_22 AC 912 ms
57,728 KB
testcase_23 AC 925 ms
58,116 KB
testcase_24 AC 912 ms
57,736 KB
testcase_25 AC 948 ms
57,860 KB
testcase_26 AC 935 ms
57,860 KB
testcase_27 AC 943 ms
57,984 KB
testcase_28 AC 940 ms
57,860 KB
testcase_29 AC 950 ms
57,988 KB
testcase_30 AC 958 ms
57,864 KB
testcase_31 AC 948 ms
58,120 KB
testcase_32 AC 913 ms
57,864 KB
testcase_33 AC 919 ms
58,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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