結果
| 問題 | No.1235 ζ関数 |
| ユーザー |
|
| 提出日時 | 2020-10-04 09:41:38 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 122 bytes |
| 記録 | |
| コンパイル時間 | 339 ms |
| コンパイル使用メモリ | 20,704 KB |
| 実行使用メモリ | 41,336 KB |
| 最終ジャッジ日時 | 2026-04-02 14:31:16 |
| 合計ジャッジ時間 | 7,208 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 25 |
ソースコード
#yuki235
import mpmath
mpmath.mp.dps=10
mpmath.mp.pretty=True
n=int(input())
res=mpmath.zeta(n,1)
print("{}".format(res))