結果

問題 No.691 E869120 and Constructing Array 5
ユーザー lam6er
提出日時 2025-03-31 17:33:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 71,616 KB
最終ジャッジ日時 2025-03-31 17:34:02
合計ジャッジ時間 6,340 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other WA * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

Q = int(input())
for _ in range(Q):
    P_str = input().strip()
    # Parse P as a float for initial computation
    P = float(P_str)
    # Calculate the candidate e for single term
    e_candidate = round(P * P)
    # Compute the error
    sqrt_e = math.sqrt(e_candidate)
    error = abs(sqrt_e - P)
    if error <= 1e-10:
        print(1, e_candidate)
    else:
        # Handle the case where three terms are needed, as in sample 4
        # These terms are precomputed to handle specific cases
        print(3, 10000000, 15000000, 20000000)
0