結果

問題 No.550 夏休みの思い出(1)
ユーザー maspymaspy
提出日時 2020-03-23 16:42:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 553 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 45,508 KB
最終ジャッジ日時 2024-06-07 23:11:26
合計ジャッジ時間 30,476 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 478 ms
45,372 KB
testcase_03 AC 479 ms
45,368 KB
testcase_04 AC 475 ms
45,444 KB
testcase_05 AC 470 ms
45,380 KB
testcase_06 AC 473 ms
45,120 KB
testcase_07 AC 467 ms
44,860 KB
testcase_08 WA -
testcase_09 AC 479 ms
44,736 KB
testcase_10 AC 480 ms
44,988 KB
testcase_11 AC 487 ms
44,864 KB
testcase_12 AC 477 ms
45,240 KB
testcase_13 AC 484 ms
45,380 KB
testcase_14 AC 474 ms
44,988 KB
testcase_15 AC 477 ms
45,096 KB
testcase_16 AC 481 ms
44,736 KB
testcase_17 AC 471 ms
45,124 KB
testcase_18 AC 470 ms
45,116 KB
testcase_19 AC 463 ms
44,988 KB
testcase_20 AC 479 ms
44,996 KB
testcase_21 AC 466 ms
45,116 KB
testcase_22 AC 473 ms
44,992 KB
testcase_23 AC 472 ms
45,380 KB
testcase_24 AC 481 ms
45,120 KB
testcase_25 AC 471 ms
45,116 KB
testcase_26 AC 469 ms
44,860 KB
testcase_27 AC 470 ms
45,116 KB
testcase_28 AC 478 ms
45,116 KB
testcase_29 AC 470 ms
44,992 KB
testcase_30 AC 486 ms
45,244 KB
testcase_31 AC 481 ms
44,864 KB
testcase_32 AC 477 ms
45,000 KB
testcase_33 AC 474 ms
45,116 KB
testcase_34 AC 472 ms
44,732 KB
testcase_35 AC 476 ms
45,244 KB
testcase_36 AC 477 ms
45,116 KB
testcase_37 AC 481 ms
45,256 KB
testcase_38 AC 469 ms
45,120 KB
testcase_39 AC 470 ms
44,868 KB
testcase_40 AC 470 ms
44,732 KB
testcase_41 AC 468 ms
44,988 KB
testcase_42 AC 476 ms
44,860 KB
testcase_43 AC 484 ms
44,860 KB
testcase_44 AC 475 ms
45,120 KB
testcase_45 AC 480 ms
45,112 KB
testcase_46 AC 472 ms
44,744 KB
testcase_47 AC 477 ms
45,116 KB
testcase_48 AC 475 ms
44,984 KB
testcase_49 AC 474 ms
45,120 KB
testcase_50 AC 472 ms
44,864 KB
testcase_51 AC 480 ms
45,120 KB
testcase_52 AC 476 ms
44,992 KB
testcase_53 AC 485 ms
45,368 KB
testcase_54 AC 475 ms
45,112 KB
testcase_55 AC 479 ms
45,368 KB
testcase_56 AC 473 ms
44,868 KB
testcase_57 AC 487 ms
44,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

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

f = [1, A, B, C]
roots = np.roots(f)
roots = np.rint(roots).astype(np.int64)
ind = np.abs(roots).argsort()
roots = roots[ind]
r = roots[0]

f = [1, A + r, B + r * (A + r)]
roots = np.roots(f)
roots = np.rint(roots).astype(np.int64)
ind = np.abs(roots).argsort()
roots = roots[ind]
s = roots[0]

roots = np.array([r, s, -A - r - s])
roots.sort()
print(*roots)
0