結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 493 ms
44,984 KB
testcase_03 AC 496 ms
44,988 KB
testcase_04 AC 493 ms
44,996 KB
testcase_05 AC 485 ms
45,108 KB
testcase_06 AC 496 ms
45,496 KB
testcase_07 AC 480 ms
45,380 KB
testcase_08 WA -
testcase_09 AC 505 ms
44,988 KB
testcase_10 AC 488 ms
45,120 KB
testcase_11 AC 477 ms
45,244 KB
testcase_12 AC 487 ms
45,124 KB
testcase_13 AC 482 ms
44,860 KB
testcase_14 AC 475 ms
45,116 KB
testcase_15 AC 499 ms
44,860 KB
testcase_16 AC 491 ms
45,120 KB
testcase_17 AC 489 ms
44,996 KB
testcase_18 AC 491 ms
44,996 KB
testcase_19 AC 492 ms
44,856 KB
testcase_20 AC 485 ms
45,120 KB
testcase_21 AC 483 ms
45,472 KB
testcase_22 AC 468 ms
45,124 KB
testcase_23 AC 489 ms
45,092 KB
testcase_24 AC 481 ms
45,252 KB
testcase_25 AC 488 ms
45,124 KB
testcase_26 AC 487 ms
44,992 KB
testcase_27 AC 486 ms
45,384 KB
testcase_28 AC 480 ms
45,372 KB
testcase_29 AC 485 ms
44,860 KB
testcase_30 AC 491 ms
45,368 KB
testcase_31 AC 487 ms
45,376 KB
testcase_32 AC 491 ms
45,252 KB
testcase_33 AC 498 ms
45,384 KB
testcase_34 AC 487 ms
44,992 KB
testcase_35 AC 491 ms
45,500 KB
testcase_36 AC 491 ms
45,112 KB
testcase_37 AC 490 ms
44,988 KB
testcase_38 AC 481 ms
45,376 KB
testcase_39 AC 483 ms
44,860 KB
testcase_40 AC 474 ms
45,508 KB
testcase_41 AC 485 ms
44,992 KB
testcase_42 AC 478 ms
45,380 KB
testcase_43 AC 486 ms
45,000 KB
testcase_44 AC 476 ms
45,120 KB
testcase_45 AC 493 ms
45,120 KB
testcase_46 AC 496 ms
45,216 KB
testcase_47 AC 498 ms
44,996 KB
testcase_48 AC 503 ms
45,120 KB
testcase_49 AC 508 ms
44,860 KB
testcase_50 AC 499 ms
45,124 KB
testcase_51 AC 493 ms
44,996 KB
testcase_52 AC 495 ms
45,124 KB
testcase_53 AC 491 ms
44,860 KB
testcase_54 AC 492 ms
44,996 KB
testcase_55 AC 503 ms
45,112 KB
testcase_56 AC 495 ms
45,368 KB
testcase_57 AC 493 ms
45,112 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).real.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).real.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