結果

問題 No.2154 あさかつの参加人数
ユーザー kwkkwk
提出日時 2022-12-15 18:07:36
言語 PHP
(8.3.4)
結果
MLE  
実行時間 -
コード長 219 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 31,892 KB
実行使用メモリ 570,244 KB
最終ジャッジ日時 2024-11-14 08:40:36
合計ジャッジ時間 81,073 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
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 MLE -
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 = 0; $j < $l-$r+1; $j++) {
          $num[]=$r+$j;
     }
}

echo $num[1][1];

?>
0