結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 952 ms
58,372 KB
testcase_01 AC 955 ms
58,244 KB
testcase_02 AC 963 ms
57,988 KB
testcase_03 AC 955 ms
58,244 KB
testcase_04 AC 968 ms
58,372 KB
testcase_05 AC 956 ms
57,988 KB
testcase_06 AC 928 ms
58,032 KB
testcase_07 AC 943 ms
58,120 KB
testcase_08 AC 951 ms
57,860 KB
testcase_09 AC 924 ms
58,244 KB
testcase_10 AC 942 ms
58,120 KB
testcase_11 AC 968 ms
58,112 KB
testcase_12 AC 960 ms
57,984 KB
testcase_13 AC 963 ms
58,112 KB
testcase_14 AC 954 ms
58,500 KB
testcase_15 AC 965 ms
58,112 KB
testcase_16 AC 945 ms
58,116 KB
testcase_17 AC 953 ms
57,860 KB
testcase_18 AC 976 ms
58,116 KB
testcase_19 AC 978 ms
58,116 KB
testcase_20 AC 955 ms
58,372 KB
testcase_21 AC 957 ms
57,984 KB
testcase_22 AC 932 ms
58,380 KB
testcase_23 AC 930 ms
58,116 KB
testcase_24 AC 933 ms
58,368 KB
testcase_25 AC 927 ms
58,112 KB
testcase_26 AC 950 ms
58,120 KB
testcase_27 AC 967 ms
57,988 KB
testcase_28 AC 946 ms
57,872 KB
testcase_29 AC 951 ms
58,248 KB
testcase_30 AC 966 ms
57,860 KB
testcase_31 AC 963 ms
57,988 KB
testcase_32 AC 959 ms
58,120 KB
testcase_33 AC 930 ms
58,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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