結果

問題 No.550 夏休みの思い出(1)
ユーザー titiatitia
提出日時 2024-03-12 01:51:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 629 ms / 2,000 ms
コード長 1,049 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-09-29 22:08:24
合計ジャッジ時間 24,180 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 473 ms
76,416 KB
testcase_01 AC 601 ms
75,776 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 42 ms
52,352 KB
testcase_08 AC 41 ms
51,584 KB
testcase_09 AC 471 ms
75,904 KB
testcase_10 AC 475 ms
75,904 KB
testcase_11 AC 613 ms
76,416 KB
testcase_12 AC 605 ms
76,544 KB
testcase_13 AC 605 ms
76,032 KB
testcase_14 AC 514 ms
76,672 KB
testcase_15 AC 594 ms
76,800 KB
testcase_16 AC 595 ms
76,544 KB
testcase_17 AC 601 ms
76,288 KB
testcase_18 AC 600 ms
76,672 KB
testcase_19 AC 629 ms
76,288 KB
testcase_20 AC 582 ms
76,288 KB
testcase_21 AC 577 ms
76,160 KB
testcase_22 AC 174 ms
76,672 KB
testcase_23 AC 305 ms
76,544 KB
testcase_24 AC 320 ms
77,184 KB
testcase_25 AC 95 ms
76,288 KB
testcase_26 AC 102 ms
76,928 KB
testcase_27 AC 91 ms
76,288 KB
testcase_28 AC 97 ms
76,160 KB
testcase_29 AC 215 ms
76,544 KB
testcase_30 AC 136 ms
75,904 KB
testcase_31 AC 609 ms
76,672 KB
testcase_32 AC 589 ms
76,288 KB
testcase_33 AC 587 ms
76,544 KB
testcase_34 AC 596 ms
76,288 KB
testcase_35 AC 607 ms
76,544 KB
testcase_36 AC 629 ms
76,672 KB
testcase_37 AC 591 ms
76,544 KB
testcase_38 AC 595 ms
76,416 KB
testcase_39 AC 614 ms
76,800 KB
testcase_40 AC 366 ms
77,056 KB
testcase_41 AC 371 ms
76,928 KB
testcase_42 AC 304 ms
76,928 KB
testcase_43 AC 96 ms
76,416 KB
testcase_44 AC 141 ms
77,056 KB
testcase_45 AC 106 ms
76,288 KB
testcase_46 AC 129 ms
77,440 KB
testcase_47 AC 234 ms
76,544 KB
testcase_48 AC 359 ms
76,416 KB
testcase_49 AC 342 ms
76,032 KB
testcase_50 AC 341 ms
75,520 KB
testcase_51 AC 318 ms
76,288 KB
testcase_52 AC 449 ms
75,904 KB
testcase_53 AC 534 ms
76,416 KB
testcase_54 AC 535 ms
76,544 KB
testcase_55 AC 444 ms
76,160 KB
testcase_56 AC 494 ms
76,032 KB
testcase_57 AC 547 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 割り切れる割り算、上の桁から。
def poly_div(X,Y):
    ANS=[0]*(len(X)-len(Y)+1)

    for i in range(len(X)-len(Y)+1):
        if X[i]%Y[0]!=0:
            return False
        
        ANS[i]=X[i]//Y[0]
        for j in range(len(Y)):
            X[j+i]-=ANS[i]*Y[j]

    return ANS

# 掛け算
def poly_mul(X,Y):
    ANS=[0]*(len(X)+len(Y)-1)

    for i in range(len(X)):
        for j in range(len(Y)):
            ANS[i+j]+=X[i]*Y[j]

    return ANS


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


for i in range(-10**6-5,10**6+5):
    ANS=poly_div([1,A,B,C],[1,-i])

    if ANS!=False:
        a,b,c=ANS

        if b*b-4*c<0:
            continue

        k=(-b+(b*b-4*c)**(1/2))/2
        l=(-b-(b*b-4*c)**(1/2))/2

        if abs(k-round(k))<0.00000000000001 and abs(l-round(l))<0.00000000000001:
            L=[i,round(k),round(l)]
            L.sort()

            XX=poly_mul(poly_mul([1,-i],[1,-round(k)]),[1,-round(l)])

            if XX[1:]==[A,B,C]:
                print(*L)
                exit()
                
            
0