結果

問題 No.810 割った余りの個数
ユーザー osakana666666osakana666666
提出日時 2019-05-19 15:29:40
言語 PHP
(8.3.4)
結果
MLE  
実行時間 -
コード長 241 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 30,636 KB
実行使用メモリ 561,020 KB
最終ジャッジ日時 2024-09-17 06:28:42
合計ジャッジ時間 4,945 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,060 KB
testcase_01 AC 46 ms
30,540 KB
testcase_02 AC 42 ms
30,640 KB
testcase_03 AC 41 ms
30,500 KB
testcase_04 AC 41 ms
30,804 KB
testcase_05 AC 41 ms
30,844 KB
testcase_06 AC 42 ms
30,856 KB
testcase_07 AC 41 ms
30,716 KB
testcase_08 AC 41 ms
30,548 KB
testcase_09 AC 42 ms
30,704 KB
testcase_10 AC 42 ms
30,712 KB
testcase_11 AC 43 ms
30,908 KB
testcase_12 AC 42 ms
30,800 KB
testcase_13 AC 41 ms
30,648 KB
testcase_14 AC 42 ms
30,716 KB
testcase_15 AC 41 ms
30,660 KB
testcase_16 AC 41 ms
30,776 KB
testcase_17 AC 41 ms
30,828 KB
testcase_18 AC 42 ms
30,572 KB
testcase_19 AC 41 ms
30,568 KB
testcase_20 MLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$input = trim(fgets(STDIN));
$array = explode(' ',$input);
$min = $array[0];
$max = $array[1];
$division = $array[2];
for($i=$min; $i<=$max; $i++) {
    $reminder[]=$i%$division;
}
$count=count(array_unique($reminder));
echo $count;
?>
0