結果
問題 |
No.454 逆2乗和
|
ユーザー |
|
提出日時 | 2022-03-02 12:08:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 166 ms / 2,000 ms |
コード長 | 101 bytes |
コンパイル時間 | 334 ms |
コンパイル使用メモリ | 82,508 KB |
実行使用メモリ | 75,520 KB |
最終ジャッジ日時 | 2024-07-16 05:51:18 |
合計ジャッジ時間 | 6,406 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 31 |
ソースコード
x = float(input()) S = 0 for i in range(1,10**7): S += 1/(x+i)**2 S += 1/(x+10**7) print(S)