結果

問題 No.799 赤黒かーどげぇむ
ユーザー ayaaya
提出日時 2019-08-02 11:26:40
言語 PHP
(8.3.4)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 30,728 KB
実行使用メモリ 31,276 KB
最終ジャッジ日時 2024-07-05 08:04:36
合計ジャッジ時間 1,787 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,008 KB
testcase_01 AC 46 ms
30,836 KB
testcase_02 AC 43 ms
30,988 KB
testcase_03 AC 40 ms
31,016 KB
testcase_04 AC 40 ms
30,956 KB
testcase_05 AC 39 ms
30,964 KB
testcase_06 AC 40 ms
30,920 KB
testcase_07 AC 40 ms
31,040 KB
testcase_08 AC 40 ms
31,212 KB
testcase_09 AC 43 ms
31,276 KB
testcase_10 AC 39 ms
30,840 KB
testcase_11 AC 40 ms
30,896 KB
testcase_12 AC 40 ms
30,960 KB
testcase_13 AC 39 ms
30,908 KB
testcase_14 AC 38 ms
31,036 KB
testcase_15 AC 41 ms
31,144 KB
testcase_16 AC 40 ms
30,788 KB
testcase_17 AC 41 ms
30,984 KB
testcase_18 AC 41 ms
30,840 KB
testcase_19 AC 40 ms
31,100 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$input=explode(" ", (trim(fgets(STDIN))));
$A=(int)$input[0];
$B=(int)$input[1];
$C=(int)$input[2];
$D=(int)$input[3];
$redCard=($B-$A)+1;
$blackCard=($D-$C)+1;
//(小さい順)ABCDとCDAB
$overlapCard=0;
//overlapするカード数の設定
if($C<$A){
  if($B<$D){
    //CABD
    $overlapCard=$redCard;
    }elseif($A<=$D){
      //CADB
      $overlapCard=($D-$A)+1;
    }
}elseif($B<=$D){
    if($C<=$B){
      //ACBD
      $overlapCard=($B-$C)+1;
    }
}else{
    //ACDB
    $overlapCard=$blackCard;
  }

echo ($redCard*$blackCard)-$overlapCard;
0