結果

問題 No.1273 はじめのζ関数
ユーザー akakimidoriakakimidori
提出日時 2020-10-30 21:29:10
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 242 bytes
コンパイル時間 1,743 ms
コンパイル使用メモリ 194,172 KB
最終ジャッジ日時 2025-01-15 16:42:09
ジャッジサーバーID
(参考情報)
judge1 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 39 WA * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:7:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         scanf("%d",&n);
      |         ~~~~~^~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

int main(){
	int n;
	scanf("%d",&n);
	double ans = 0;
	for (int i = 1000000; i >= n; --i) {
	    ans += riemann_zeta(i) - 1;
	}
	long a = (long)(1000000 * ans);
	cout << a << endl;
	return 0;
}
0