結果

問題 No.1273 はじめのζ関数
ユーザー tanimani364
提出日時 2021-04-01 20:16:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 403 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 68,096 KB
最終ジャッジ日時 2024-12-18 01:45:14
合計ジャッジ時間 5,668 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 39 WA * 1
権限があれば一括ダウンロードができます

ソースコード

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)

		res/=i-1
		ans+=res

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