結果
問題 | No.1273 はじめのζ関数 |
ユーザー |
![]() |
提出日時 | 2021-04-01 20:13:57 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 400 bytes |
コンパイル時間 | 412 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 68,728 KB |
最終ジャッジ日時 | 2024-12-18 01:41:46 |
合計ジャッジ時間 | 4,673 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 39 WA * 1 |
ソースコード
#!/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,10000): res=0 res+=math.pow(i,1-x) res/=i-1 ans+=res ans*=1000000 ans=int(ans) print(ans) if __name__ == '__main__': main()