結果

問題 No.550 夏休みの思い出(1)
ユーザー takeya_okinotakeya_okino
提出日時 2017-07-29 20:02:43
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 799 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 30,732 KB
実行使用メモリ 31,300 KB
最終ジャッジ日時 2024-10-10 20:24:16
合計ジャッジ時間 3,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
30,772 KB
testcase_01 AC 44 ms
30,588 KB
testcase_02 AC 44 ms
30,596 KB
testcase_03 AC 42 ms
30,324 KB
testcase_04 AC 43 ms
30,844 KB
testcase_05 AC 40 ms
30,380 KB
testcase_06 AC 41 ms
30,476 KB
testcase_07 AC 41 ms
30,684 KB
testcase_08 AC 41 ms
30,680 KB
testcase_09 AC 41 ms
30,164 KB
testcase_10 AC 44 ms
30,668 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 41 ms
30,404 KB
testcase_14 AC 41 ms
30,684 KB
testcase_15 AC 42 ms
30,180 KB
testcase_16 AC 43 ms
30,352 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 42 ms
30,500 KB
testcase_20 AC 41 ms
30,292 KB
testcase_21 AC 41 ms
30,036 KB
testcase_22 AC 43 ms
30,436 KB
testcase_23 AC 43 ms
30,620 KB
testcase_24 AC 43 ms
30,764 KB
testcase_25 AC 42 ms
30,348 KB
testcase_26 AC 43 ms
30,780 KB
testcase_27 AC 43 ms
30,624 KB
testcase_28 AC 42 ms
30,348 KB
testcase_29 AC 43 ms
30,160 KB
testcase_30 AC 42 ms
30,460 KB
testcase_31 AC 43 ms
30,220 KB
testcase_32 AC 42 ms
30,220 KB
testcase_33 WA -
testcase_34 AC 43 ms
30,432 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 41 ms
30,736 KB
testcase_38 WA -
testcase_39 AC 41 ms
30,352 KB
testcase_40 AC 41 ms
30,504 KB
testcase_41 AC 41 ms
30,580 KB
testcase_42 AC 41 ms
30,428 KB
testcase_43 AC 41 ms
30,816 KB
testcase_44 AC 41 ms
30,656 KB
testcase_45 AC 41 ms
30,296 KB
testcase_46 AC 40 ms
30,668 KB
testcase_47 AC 40 ms
30,812 KB
testcase_48 AC 41 ms
30,600 KB
testcase_49 AC 41 ms
30,276 KB
testcase_50 AC 41 ms
30,224 KB
testcase_51 AC 42 ms
30,584 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$array = explode(" ", trim(fgets(STDIN)));
$A = $array[0];
$B = $array[1];
$C = $array[2];
$left = (-1) * pow(10, 9) + 1;
$right = pow(10, 9);
$x1 = 0;
while($left < $right) {
  if((($left + $right) % 2 == 0) || ($left + $right >= 0)) {
    $med = intdiv($left + $right, 2);
  } else {
    $med = intdiv($left + $right - 1, 2);
  }
  $y = pow($med, 3) + $A * pow($med, 2) + $B * $med + $C;
  if($y > 0) {
    $right = $med;
  } else if($y < 0) {
    $left = $med + 1;
  } else {
    $x1 = $med;
    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