結果

問題 No.454 逆2乗和
ユーザー maspymaspy
提出日時 2020-03-23 16:30:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 76 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 106,752 KB
最終ジャッジ日時 2024-06-07 22:53:08
合計ジャッジ時間 37,113 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 917 ms
57,852 KB
testcase_02 AC 914 ms
57,984 KB
testcase_03 AC 913 ms
57,860 KB
testcase_04 AC 905 ms
58,116 KB
testcase_05 AC 909 ms
58,244 KB
testcase_06 AC 911 ms
57,732 KB
testcase_07 AC 933 ms
57,604 KB
testcase_08 AC 903 ms
57,996 KB
testcase_09 AC 916 ms
58,252 KB
testcase_10 AC 922 ms
58,132 KB
testcase_11 AC 909 ms
57,992 KB
testcase_12 AC 938 ms
58,240 KB
testcase_13 AC 960 ms
57,728 KB
testcase_14 AC 930 ms
57,864 KB
testcase_15 AC 965 ms
57,988 KB
testcase_16 AC 923 ms
57,732 KB
testcase_17 AC 922 ms
57,736 KB
testcase_18 AC 919 ms
58,116 KB
testcase_19 AC 915 ms
58,100 KB
testcase_20 AC 929 ms
57,736 KB
testcase_21 AC 940 ms
57,988 KB
testcase_22 AC 938 ms
57,988 KB
testcase_23 AC 929 ms
57,988 KB
testcase_24 AC 919 ms
58,112 KB
testcase_25 AC 921 ms
57,988 KB
testcase_26 AC 927 ms
57,632 KB
testcase_27 AC 932 ms
57,984 KB
testcase_28 AC 925 ms
57,988 KB
testcase_29 AC 944 ms
57,732 KB
testcase_30 AC 928 ms
58,244 KB
testcase_31 AC 922 ms
58,120 KB
testcase_32 AC 963 ms
58,240 KB
testcase_33 AC 958 ms
106,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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