結果
問題 | No.1235 ζ関数 |
ユーザー | ytft |
提出日時 | 2021-05-14 18:11:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,903 ms / 2,000 ms |
コード長 | 604 bytes |
コンパイル時間 | 5,201 ms |
コンパイル使用メモリ | 336,680 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 22:15:26 |
合計ジャッジ時間 | 47,634 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,902 ms
5,248 KB |
testcase_01 | AC | 1,902 ms
5,248 KB |
testcase_02 | AC | 1,902 ms
5,248 KB |
testcase_03 | AC | 1,902 ms
5,248 KB |
testcase_04 | AC | 1,901 ms
5,248 KB |
testcase_05 | AC | 1,903 ms
5,248 KB |
testcase_06 | AC | 1,902 ms
5,248 KB |
testcase_07 | AC | 1,903 ms
5,248 KB |
testcase_08 | AC | 1,902 ms
5,248 KB |
testcase_09 | AC | 1,902 ms
5,248 KB |
testcase_10 | AC | 1,901 ms
5,248 KB |
testcase_11 | AC | 1,901 ms
5,248 KB |
testcase_12 | AC | 1,902 ms
5,248 KB |
testcase_13 | AC | 1,902 ms
5,248 KB |
testcase_14 | AC | 1,902 ms
5,248 KB |
testcase_15 | AC | 1,901 ms
5,248 KB |
testcase_16 | AC | 1,903 ms
5,248 KB |
testcase_17 | AC | 1,902 ms
5,248 KB |
testcase_18 | AC | 1,901 ms
5,248 KB |
testcase_19 | AC | 1,902 ms
5,248 KB |
testcase_20 | AC | 1,902 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <boost/multiprecision/cpp_int.hpp> typedef boost::multiprecision::cpp_int mp; int main(){ auto start = std::chrono::system_clock::now(); auto end = std::chrono::system_clock::now(); int p=std::chrono::duration_cast<std::chrono::milliseconds>(end-start).count(); int N; cin>>N; double i=1; double ans=0; while(p<1900){ ans+=pow(i,-N); ++i; end=std::chrono::system_clock::now(); p=std::chrono::duration_cast<std::chrono::milliseconds>(end-start).count(); } printf("%.12f",ans); }