結果

問題 No.523 LED
ユーザー takepantakepan
提出日時 2017-06-02 22:53:24
言語 PHP
(8.3.4)
結果
AC  
実行時間 1,394 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 31,632 KB
実行使用メモリ 31,244 KB
最終ジャッジ日時 2024-09-21 23:50:30
合計ジャッジ時間 11,199 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
30,872 KB
testcase_01 AC 42 ms
31,040 KB
testcase_02 AC 57 ms
31,140 KB
testcase_03 AC 41 ms
30,788 KB
testcase_04 AC 41 ms
30,888 KB
testcase_05 AC 1,394 ms
31,192 KB
testcase_06 AC 43 ms
30,932 KB
testcase_07 AC 42 ms
30,976 KB
testcase_08 AC 42 ms
30,888 KB
testcase_09 AC 51 ms
31,140 KB
testcase_10 AC 42 ms
30,900 KB
testcase_11 AC 43 ms
30,764 KB
testcase_12 AC 42 ms
31,244 KB
testcase_13 AC 301 ms
30,676 KB
testcase_14 AC 43 ms
30,868 KB
testcase_15 AC 44 ms
31,088 KB
testcase_16 AC 43 ms
31,000 KB
testcase_17 AC 44 ms
30,848 KB
testcase_18 AC 1,394 ms
31,016 KB
testcase_19 AC 520 ms
30,980 KB
testcase_20 AC 470 ms
30,784 KB
testcase_21 AC 1,057 ms
30,632 KB
testcase_22 AC 1,174 ms
30,808 KB
testcase_23 AC 1,172 ms
31,172 KB
testcase_24 AC 68 ms
30,764 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    // $a = microtime(true);

    fscanf (STDIN, "%d", $N);
    $ans = 1;
    for ($i = 2; $i <= $N * 2; $i++) {
        if ($i % 2 == 0) {
            $ans *= ($i / 2);
        } else {
            $ans *= $i;
        }
        $ans %= 1000000007;
    }
    echo $ans . PHP_EOL;

    // $b = microtime(true);
    // echo ($b - $a) . PHP_EOL;
0