結果

問題 No.550 夏休みの思い出(1)
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-30 11:52:37
言語 PHP
(8.3.4)
結果
AC  
実行時間 513 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 935 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 32,660 KB
最終ジャッジ日時 2024-10-11 05:42:25
合計ジャッジ時間 10,369 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
32,528 KB
testcase_01 AC 492 ms
32,528 KB
testcase_02 AC 489 ms
32,344 KB
testcase_03 AC 489 ms
32,340 KB
testcase_04 AC 513 ms
32,400 KB
testcase_05 AC 486 ms
32,340 KB
testcase_06 AC 511 ms
32,660 KB
testcase_07 AC 489 ms
32,148 KB
testcase_08 AC 497 ms
32,528 KB
testcase_09 AC 41 ms
32,400 KB
testcase_10 AC 41 ms
32,400 KB
testcase_11 AC 41 ms
32,272 KB
testcase_12 AC 41 ms
32,404 KB
testcase_13 AC 41 ms
32,472 KB
testcase_14 AC 40 ms
32,148 KB
testcase_15 AC 40 ms
32,400 KB
testcase_16 AC 41 ms
32,528 KB
testcase_17 AC 40 ms
32,404 KB
testcase_18 AC 40 ms
32,532 KB
testcase_19 AC 41 ms
32,656 KB
testcase_20 AC 42 ms
32,528 KB
testcase_21 AC 41 ms
32,404 KB
testcase_22 AC 336 ms
32,276 KB
testcase_23 AC 162 ms
32,468 KB
testcase_24 AC 218 ms
32,020 KB
testcase_25 AC 258 ms
32,272 KB
testcase_26 AC 209 ms
32,400 KB
testcase_27 AC 197 ms
32,400 KB
testcase_28 AC 197 ms
32,344 KB
testcase_29 AC 91 ms
32,528 KB
testcase_30 AC 406 ms
32,400 KB
testcase_31 AC 42 ms
32,528 KB
testcase_32 AC 43 ms
32,656 KB
testcase_33 AC 44 ms
32,404 KB
testcase_34 AC 41 ms
32,404 KB
testcase_35 AC 41 ms
32,400 KB
testcase_36 AC 41 ms
32,400 KB
testcase_37 AC 41 ms
32,400 KB
testcase_38 AC 43 ms
32,272 KB
testcase_39 AC 41 ms
32,400 KB
testcase_40 AC 83 ms
32,400 KB
testcase_41 AC 73 ms
32,400 KB
testcase_42 AC 83 ms
32,404 KB
testcase_43 AC 63 ms
32,400 KB
testcase_44 AC 68 ms
32,276 KB
testcase_45 AC 64 ms
32,344 KB
testcase_46 AC 75 ms
32,400 KB
testcase_47 AC 46 ms
32,144 KB
testcase_48 AC 40 ms
32,276 KB
testcase_49 AC 40 ms
32,528 KB
testcase_50 AC 40 ms
32,404 KB
testcase_51 AC 40 ms
32,400 KB
testcase_52 AC 64 ms
32,528 KB
testcase_53 AC 63 ms
32,396 KB
testcase_54 AC 63 ms
32,656 KB
testcase_55 AC 64 ms
32,344 KB
testcase_56 AC 63 ms
32,400 KB
testcase_57 AC 63 ms
32,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$array = explode(" ", trim(fgets(STDIN)));
$A = $array[0];
$B = $array[1];
$C = $array[2];
$x1 = 0;
for($i = 0; $i < pow(10, 6); $i++) {
  $x = $i;
  $y = pow($x, 3) + $A * pow($x, 2) + $B * $x + $C;
  if($y == 0) {
    $x1 = $x;
    break;
  }
  $x = (-1) * $i;
  $y = pow($x, 3) + $A * pow($x, 2) + $B * $x + $C;
  if($y == 0) {
    $x1 = $x;
    break;
  }
}
$b = $A + $x1;
$c = $x1 * $A + pow($x1, 2) + $B;
$x2 = ((-1) * $b - sqrt(pow($b, 2) - 4 * $c)) / 2;
$x3 = ((-1) * $b + sqrt(pow($b, 2) - 4 * $c)) / 2;
$ans = array($x1, $x2, $x3);
sort($ans);
for($i = 0; $i < 3; $i++) {
  print($ans[$i]);
  if($i < 2) print(" ");
}
print("\n");
?>
0