結果

問題 No.2154 あさかつの参加人数
ユーザー SKSK
提出日時 2023-01-04 15:56:41
言語 PHP
(843.2)
結果
OLE  
実行時間 -
コード長 333 bytes
コンパイル時間 3,198 ms
コンパイル使用メモリ 30,416 KB
実行使用メモリ 66,708 KB
最終ジャッジ日時 2024-11-27 19:07:51
合計ジャッジ時間 83,153 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 OLE -
testcase_01 OLE -
testcase_02 OLE -
testcase_03 OLE -
testcase_04 OLE -
testcase_05 OLE -
testcase_06 OLE -
testcase_07 OLE -
testcase_08 OLE -
testcase_09 OLE -
testcase_10 OLE -
testcase_11 OLE -
testcase_12 OLE -
testcase_13 OLE -
testcase_14 OLE -
testcase_15 OLE -
testcase_16 OLE -
testcase_17 OLE -
testcase_18 OLE -
testcase_19 OLE -
testcase_20 OLE -
testcase_21 OLE -
testcase_22 OLE -
testcase_23 OLE -
testcase_24 OLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
[$n,$m] = explode(" ",trim(fgets(STDIN)));

for ($i = 0; $i < $m; $i++) {
     [$l,$r] = explode(" ",trim(fgets(STDIN)));
}


for ($i = 1; $i <= $n; $i++) {
    $count = 0;
     for ($j = 0; $j < $m; $j++) {
          if ($i <= $l[$j] && $i >= $r[$j]) {
              $count++;
          }
     }
     echo $count."\n";
}



?>
0