結果

問題 No.550 夏休みの思い出(1)
ユーザー imulanimulan
提出日時 2017-08-15 23:11:52
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 594 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-10-13 11:07:47
合計ジャッジ時間 7,723 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 175 ms
75,112 KB
testcase_01 AC 48 ms
58,492 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 39 ms
52,224 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 173 ms
74,736 KB
testcase_10 AC 172 ms
74,940 KB
testcase_11 AC 148 ms
75,220 KB
testcase_12 AC 149 ms
74,932 KB
testcase_13 AC 173 ms
75,340 KB
testcase_14 AC 169 ms
75,632 KB
testcase_15 RE -
testcase_16 AC 176 ms
75,132 KB
testcase_17 AC 169 ms
75,132 KB
testcase_18 AC 170 ms
75,004 KB
testcase_19 AC 177 ms
75,396 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 44 ms
58,240 KB
testcase_23 AC 44 ms
57,856 KB
testcase_24 AC 44 ms
58,496 KB
testcase_25 AC 43 ms
58,624 KB
testcase_26 AC 45 ms
58,628 KB
testcase_27 AC 43 ms
58,620 KB
testcase_28 AC 44 ms
58,112 KB
testcase_29 AC 44 ms
58,880 KB
testcase_30 AC 43 ms
57,856 KB
testcase_31 AC 161 ms
75,260 KB
testcase_32 AC 159 ms
75,380 KB
testcase_33 AC 156 ms
75,416 KB
testcase_34 AC 162 ms
75,904 KB
testcase_35 AC 156 ms
75,232 KB
testcase_36 AC 156 ms
75,544 KB
testcase_37 AC 166 ms
75,392 KB
testcase_38 AC 160 ms
74,864 KB
testcase_39 AC 158 ms
75,392 KB
testcase_40 AC 46 ms
58,720 KB
testcase_41 AC 46 ms
58,368 KB
testcase_42 AC 45 ms
58,752 KB
testcase_43 AC 42 ms
57,856 KB
testcase_44 AC 43 ms
58,880 KB
testcase_45 AC 43 ms
58,240 KB
testcase_46 AC 43 ms
58,368 KB
testcase_47 AC 44 ms
58,112 KB
testcase_48 AC 45 ms
57,856 KB
testcase_49 AC 46 ms
58,368 KB
testcase_50 AC 45 ms
58,240 KB
testcase_51 AC 45 ms
58,624 KB
testcase_52 AC 45 ms
58,060 KB
testcase_53 AC 97 ms
75,248 KB
testcase_54 AC 93 ms
75,136 KB
testcase_55 AC 72 ms
75,136 KB
testcase_56 AC 93 ms
75,448 KB
testcase_57 AC 106 ms
75,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = 1000000

def f(x,a,b,c):
    return x**3 + a*x**2 + b*x + c

def SQRT(n):
    l,r= 0,10**46
    while r-l>1:
        m = (l+r)//2
        if m*m <= n:
            l = m
        else:
            r = m
    return l

def main():
    A,B,C = map(int,input().split())

    p = -N+1
    while True:
        if f(p,A,B,C) == 0:
            break
        p += 1

    D = (p*B+C)**2 + 4*C*p**3
    sq = SQRT(D)

    q = (p*B+C + sq) // (2*p**2)
    r = (p*B+C - sq) // (2*p**2)

    ans = [p,q,r]
    ans.sort()
    print(' '.join(map(str,ans)))

if __name__ == '__main__':
    main()
0