結果
問題 | No.1305 Speak of the Devil |
ユーザー | 👑Zack Ni |
提出日時 | 2020-12-02 04:34:35 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 702 bytes |
コンパイル時間 | 674 ms |
コンパイル使用メモリ | 82,192 KB |
実行使用メモリ | 86,564 KB |
最終ジャッジ日時 | 2024-09-13 03:49:10 |
合計ジャッジ時間 | 5,927 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 100 ms
78,948 KB |
testcase_13 | AC | 102 ms
78,964 KB |
testcase_14 | AC | 100 ms
78,772 KB |
testcase_15 | AC | 100 ms
78,948 KB |
testcase_16 | AC | 100 ms
79,044 KB |
testcase_17 | AC | 100 ms
79,128 KB |
testcase_18 | AC | 99 ms
78,876 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
ソースコード
import sys import argparse def main(): p, q = list(map(int,input().split())) p = float(p) q = float(q) w = pow(p, -1) t = pow(p, -1) x = p*p y = (p-1) ans = 0 prevans = -1000 i = 0 while True: ans = w * (x - p * y - i*y ) w = w * t x = x * p y = y * (p-1) i = i + 1 if ans - prevans < 1e-4: break prevans = ans print(min(ans, q)) if __name__ == "__main__": parser = argparse.ArgumentParser() parser.add_argument('--file', dest='filename', default=None) args = parser.parse_args() if args.filename is not None: sys.stdin = open(args.filename) main()