結果
| 問題 |
No.1235 ζ関数
|
| ユーザー |
|
| 提出日時 | 2020-09-21 15:04:00 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 78 bytes |
| コンパイル時間 | 288 ms |
| コンパイル使用メモリ | 82,168 KB |
| 実行使用メモリ | 96,240 KB |
| 最終ジャッジ日時 | 2024-06-24 11:42:21 |
| 合計ジャッジ時間 | 3,716 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 TLE * 1 -- * 19 |
ソースコード
n=int(input())
tmp=0
for i in range(1,10000):
tmp+=1/(pow(i,n))
print(tmp)