結果

問題 No.2154 あさかつの参加人数
ユーザー SKSK
提出日時 2022-12-21 16:13:10
言語 PHP
(8.3.4)
結果
MLE  
実行時間 -
コード長 218 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 30,848 KB
実行使用メモリ 1,678,740 KB
最終ジャッジ日時 2024-11-18 02:54:05
合計ジャッジ時間 65,065 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 TLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 TLE -
testcase_24 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 ($j = $r; $j <= $l ; $j++) {
          $day[]= $j;
     }
}

echo $day[0][1];

?>
0