結果
問題 | No.1235 ζ関数 |
ユーザー |
![]() |
提出日時 | 2020-09-21 16:03:21 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 169 bytes |
コンパイル時間 | 813 ms |
コンパイル使用メモリ | 91,548 KB |
最終ジャッジ日時 | 2025-01-14 19:21:23 |
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 21 |
ソースコード
#include <iostream>#include <iomanip>#include <cmath>int main(){int n;std::cin >> n;std::cout << std::setprecision(12) << std::riemann_zeta(n) << std::endl;}