結果
問題 |
No.1278 どんな級数?
|
ユーザー |
![]() |
提出日時 | 2025-04-16 16:12:48 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 531 bytes |
コンパイル時間 | 232 ms |
コンパイル使用メモリ | 82,208 KB |
実行使用メモリ | 66,940 KB |
最終ジャッジ日時 | 2025-04-16 16:17:29 |
合計ジャッジ時間 | 5,108 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 1 WA * 36 RE * 26 |
ソースコード
import sys def main(): X, K = map(int, sys.stdin.readline().split()) if X == 1: result = (0.75) ** K print("{0:.10f}".format(result)) else: if K == 1: print("0.5000000000") else: s = 0.0 n = 2 while True: term = 1.0 / (n ** K) if term < 1e-13: break s += term n += 1 print("{0:.10f}".format(s)) if __name__ == "__main__": main()