結果
問題 | No.1408 Nice Dice Game |
ユーザー |
|
提出日時 | 2021-07-30 17:10:24 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 390 bytes |
コンパイル時間 | 1,878 ms |
コンパイル使用メモリ | 195,932 KB |
最終ジャッジ日時 | 2025-01-23 10:20:15 |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 36 |
ソースコード
//#include <atcoder/all> #include <bits/stdc++.h> #include <cmath> using namespace std; //using namespace atcoder; using ll = long long; #define all(A) A.begin(),A.end() using vll = vector<ll>; #define rep(i, n) for (long long i = 0; i < (long long)(n); i++) using Graph = vector<vector<ll>>; int main() { ll N; cin>>N; cout<<setprecision(16)<<riemann_zeta(double(N+2))<<endl; }