結果

問題 No.550 夏休みの思い出(1)
ユーザー imulanimulan
提出日時 2017-08-15 23:11:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 594 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-13 11:07:39
合計ジャッジ時間 24,219 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 552 ms
10,624 KB
testcase_01 AC 1,029 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 540 ms
10,624 KB
testcase_10 AC 544 ms
10,752 KB
testcase_11 AC 520 ms
10,880 KB
testcase_12 AC 525 ms
10,624 KB
testcase_13 AC 560 ms
10,624 KB
testcase_14 AC 546 ms
10,624 KB
testcase_15 RE -
testcase_16 AC 554 ms
10,752 KB
testcase_17 AC 536 ms
10,752 KB
testcase_18 AC 525 ms
10,752 KB
testcase_19 AC 530 ms
10,752 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 183 ms
10,624 KB
testcase_23 AC 413 ms
10,624 KB
testcase_24 AC 331 ms
10,624 KB
testcase_25 AC 55 ms
10,624 KB
testcase_26 AC 55 ms
10,752 KB
testcase_27 AC 56 ms
10,752 KB
testcase_28 AC 55 ms
10,624 KB
testcase_29 AC 211 ms
10,752 KB
testcase_30 AC 129 ms
10,752 KB
testcase_31 AC 541 ms
10,752 KB
testcase_32 AC 526 ms
10,752 KB
testcase_33 AC 577 ms
10,752 KB
testcase_34 AC 538 ms
10,752 KB
testcase_35 AC 530 ms
10,624 KB
testcase_36 AC 526 ms
10,752 KB
testcase_37 AC 533 ms
10,624 KB
testcase_38 AC 533 ms
10,624 KB
testcase_39 AC 548 ms
10,880 KB
testcase_40 AC 519 ms
10,752 KB
testcase_41 AC 515 ms
10,624 KB
testcase_42 AC 336 ms
10,752 KB
testcase_43 AC 56 ms
10,624 KB
testcase_44 AC 56 ms
10,880 KB
testcase_45 AC 56 ms
10,624 KB
testcase_46 AC 59 ms
10,624 KB
testcase_47 AC 221 ms
10,752 KB
testcase_48 AC 550 ms
10,624 KB
testcase_49 AC 468 ms
10,752 KB
testcase_50 AC 508 ms
10,624 KB
testcase_51 AC 478 ms
10,880 KB
testcase_52 AC 507 ms
10,624 KB
testcase_53 AC 555 ms
10,752 KB
testcase_54 AC 556 ms
10,752 KB
testcase_55 AC 514 ms
10,752 KB
testcase_56 AC 502 ms
10,752 KB
testcase_57 AC 554 ms
10,752 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