結果
問題 | No.1273 はじめのζ関数 |
ユーザー |
![]() |
提出日時 | 2021-04-01 20:21:57 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 117 ms / 2,000 ms |
コード長 | 439 bytes |
コンパイル時間 | 159 ms |
コンパイル使用メモリ | 82,236 KB |
実行使用メモリ | 69,384 KB |
最終ジャッジ日時 | 2024-12-18 02:01:59 |
合計ジャッジ時間 | 5,701 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 40 |
ソースコード
#!/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()) if x==2: print(1000000) return 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()