結果
問題 | No.1273 はじめのζ関数 |
ユーザー |
![]() |
提出日時 | 2020-10-30 21:33:54 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 52 ms / 2,000 ms |
コード長 | 359 bytes |
コンパイル時間 | 1,539 ms |
コンパイル使用メモリ | 165,660 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-21 23:27:14 |
合計ジャッジ時間 | 3,332 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 40 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int x; cin >> x; if (x == 2){ cout << 1000000 << endl; return 0; } double ans = 0; for (int i = 2; i <= 1000; i++){ double add = 1; for (int j = 0; j < x - 1; j++){ add /= i; } add /= i - 1; ans += add; } ans *= 1000000; cout << (int) ans << endl; }