結果
問題 |
No.1235 ζ関数
|
ユーザー |
|
提出日時 | 2020-09-26 07:19:01 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 212 bytes |
コンパイル時間 | 1,870 ms |
コンパイル使用メモリ | 193,804 KB |
最終ジャッジ日時 | 2025-01-14 21:58:46 |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 18 WA * 3 |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; constexpr ll mod=1e9+7; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; cout << riemann_zeta(n) << endl; }