結果
問題 | No.1273 はじめのζ関数 |
ユーザー | kozy |
提出日時 | 2020-10-30 21:35:06 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 436 ms / 2,000 ms |
コード長 | 131 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-21 23:30:12 |
合計ジャッジ時間 | 17,589 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 40 |
ソースコード
N=int(input()) s=1000000 ans=0 if N==2: print(s) exit() for i in range(1,s): ans+=(1/i)*((i+1)**(-(N-1))) print(int(ans*s))