結果

問題 No.799 赤黒かーどげぇむ
ユーザー mondomondo
提出日時 2019-08-13 12:11:22
言語 PHP
(8.3.4)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 31,468 KB
最終ジャッジ日時 2024-09-19 13:22:21
合計ジャッジ時間 1,492 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
31,468 KB
testcase_01 AC 37 ms
31,388 KB
testcase_02 AC 36 ms
31,328 KB
testcase_03 AC 38 ms
31,432 KB
testcase_04 AC 39 ms
31,240 KB
testcase_05 AC 39 ms
31,316 KB
testcase_06 AC 37 ms
31,280 KB
testcase_07 AC 36 ms
31,168 KB
testcase_08 AC 35 ms
31,316 KB
testcase_09 AC 35 ms
31,136 KB
testcase_10 AC 35 ms
31,068 KB
testcase_11 AC 36 ms
31,108 KB
testcase_12 AC 35 ms
31,392 KB
testcase_13 AC 35 ms
31,276 KB
testcase_14 AC 36 ms
31,412 KB
testcase_15 AC 36 ms
30,988 KB
testcase_16 AC 36 ms
31,124 KB
testcase_17 AC 36 ms
31,324 KB
testcase_18 AC 36 ms
31,216 KB
testcase_19 AC 36 ms
31,356 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($red1 ,$red2 ,$black1 , $black2) = explode(" ",trim(fgets(STDIN)));
$red = range($red1, $red2);
$black = range($black1, $black2);
$cnt = 0;
foreach ($red as $valueRed){
    foreach ($black as $valueBlack) {
        if ($valueRed == $valueBlack){
            $cnt++;
        }
    }
}
echo (count($red) * count($black) - $cnt);
0