結果

問題 No.1273 はじめのζ関数
ユーザー tanimani364
提出日時 2021-04-01 20:15:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 426 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 67,604 KB
最終ジャッジ日時 2024-12-18 01:43:44
合計ジャッジ時間 3,857 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 38 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#coding:utf-8

import math
import string
import random
import heapq
from sys import stdin
# import numpy as np
# from matplotlib import pyplot as plt

def main():
	read=stdin.readline

	#edit here!
	x=int(read())
	ans=0
	
	for i in range(2,1000000):
		res=0
		res+=math.pow(i,1-x)
		if res<1e-7:
			break
		res/=i-1
		ans+=res

	ans*=1000000
	ans=int(ans)
	print(ans)
if __name__ == '__main__':
	main()
0