結果

問題 No.550 夏休みの思い出(1)
ユーザー sekiya9311sekiya9311
提出日時 2017-07-29 11:40:03
言語 Python2
(2.7.18)
結果
AC  
実行時間 719 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 70,016 KB
最終ジャッジ日時 2024-10-11 05:40:41
合計ジャッジ時間 26,298 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 719 ms
69,824 KB
testcase_01 AC 651 ms
69,840 KB
testcase_02 AC 86 ms
69,760 KB
testcase_03 AC 85 ms
69,760 KB
testcase_04 AC 85 ms
70,016 KB
testcase_05 AC 85 ms
69,888 KB
testcase_06 AC 87 ms
69,820 KB
testcase_07 AC 86 ms
69,760 KB
testcase_08 AC 84 ms
69,888 KB
testcase_09 AC 701 ms
69,820 KB
testcase_10 AC 701 ms
69,996 KB
testcase_11 AC 608 ms
69,888 KB
testcase_12 AC 606 ms
69,888 KB
testcase_13 AC 703 ms
69,760 KB
testcase_14 AC 704 ms
69,888 KB
testcase_15 AC 608 ms
69,924 KB
testcase_16 AC 716 ms
69,884 KB
testcase_17 AC 689 ms
69,760 KB
testcase_18 AC 679 ms
69,820 KB
testcase_19 AC 691 ms
69,760 KB
testcase_20 AC 687 ms
69,956 KB
testcase_21 AC 692 ms
70,000 KB
testcase_22 AC 174 ms
69,888 KB
testcase_23 AC 293 ms
69,876 KB
testcase_24 AC 258 ms
69,888 KB
testcase_25 AC 104 ms
69,888 KB
testcase_26 AC 100 ms
69,856 KB
testcase_27 AC 102 ms
69,888 KB
testcase_28 AC 103 ms
69,888 KB
testcase_29 AC 194 ms
69,888 KB
testcase_30 AC 142 ms
69,760 KB
testcase_31 AC 650 ms
69,888 KB
testcase_32 AC 636 ms
69,916 KB
testcase_33 AC 624 ms
69,980 KB
testcase_34 AC 654 ms
69,904 KB
testcase_35 AC 638 ms
69,760 KB
testcase_36 AC 642 ms
69,760 KB
testcase_37 AC 650 ms
69,888 KB
testcase_38 AC 638 ms
69,888 KB
testcase_39 AC 634 ms
69,888 KB
testcase_40 AC 345 ms
69,844 KB
testcase_41 AC 350 ms
69,692 KB
testcase_42 AC 259 ms
69,840 KB
testcase_43 AC 102 ms
69,760 KB
testcase_44 AC 104 ms
69,808 KB
testcase_45 AC 102 ms
69,768 KB
testcase_46 AC 103 ms
69,760 KB
testcase_47 AC 194 ms
69,888 KB
testcase_48 AC 385 ms
70,000 KB
testcase_49 AC 365 ms
69,856 KB
testcase_50 AC 372 ms
69,888 KB
testcase_51 AC 338 ms
69,824 KB
testcase_52 AC 357 ms
69,888 KB
testcase_53 AC 468 ms
69,924 KB
testcase_54 AC 457 ms
69,924 KB
testcase_55 AC 391 ms
69,892 KB
testcase_56 AC 462 ms
69,888 KB
testcase_57 AC 506 ms
69,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
a = 0
b = 0
c = 0
def calc(x):
    return x * x * x + a * x * x + b * x + c

a, b, c = map(int, raw_input().split())
ans = []
for al in range(int(-1e6), int(1e6) + 1):
    if calc(al) == 0:
        ans.append(al)
        A = 1
        B = a + al
        C = a * al + al * al + b
        ans.append((-B + math.sqrt(B * B - 4 * A * C)) / (2 * A))
        ans.append((-B - math.sqrt(B * B - 4 * A * C)) / (2 * A))
        break
ans.sort()
print str(int(ans[0])) + " " + str(int(ans[1])) + " " + str(int(ans[2]));
0