結果
問題 | No.1273 はじめのζ関数 |
ユーザー | 👑 emthrm |
提出日時 | 2020-10-30 21:38:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,071 bytes |
コンパイル時間 | 1,986 ms |
コンパイル使用メモリ | 201,972 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-21 23:42:47 |
合計ジャッジ時間 | 13,650 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 532 ms
5,248 KB |
testcase_01 | AC | 522 ms
5,376 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 521 ms
5,376 KB |
testcase_05 | AC | 520 ms
5,376 KB |
testcase_06 | RE | - |
testcase_07 | AC | 522 ms
5,376 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 527 ms
5,376 KB |
testcase_12 | AC | 526 ms
5,376 KB |
testcase_13 | RE | - |
testcase_14 | AC | 517 ms
5,376 KB |
testcase_15 | AC | 516 ms
5,376 KB |
testcase_16 | AC | 515 ms
5,376 KB |
testcase_17 | AC | 509 ms
5,376 KB |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | AC | 530 ms
5,376 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; #define FOR(i,m,n) for(int i=(m);i<(n);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) (v).begin(),(v).end() using ll = long long; constexpr int INF = 0x3f3f3f3f; constexpr ll LINF = 0x3f3f3f3f3f3f3f3fLL; constexpr double EPS = 1e-8; constexpr int MOD = 1000000007; // constexpr int MOD = 998244353; constexpr int dy[] = {1, 0, -1, 0}, dx[] = {0, -1, 0, 1}; constexpr int dy8[] = {1, 1, 0, -1, -1, -1, 0, 1}, dx8[] = {0, -1, -1, -1, 0, 1, 1, 1}; template <typename T, typename U> inline bool chmax(T &a, U b) { return a < b ? (a = b, true) : false; } template <typename T, typename U> inline bool chmin(T &a, U b) { return a > b ? (a = b, true) : false; } struct IOSetup { IOSetup() { cin.tie(nullptr); ios_base::sync_with_stdio(false); cout << fixed << setprecision(20); } } iosetup; int main() { int x; cin >> x; assert(x <= 20); long double ans = 0; FOR(i, x, 1000000) ans += riemann_zetal(i) - 1; cout << static_cast<int>(floorl(ans * 1000000)) << '\n'; return 0; }