結果

問題 No.299 蟻本が読めない
ユーザー しのっちしのっち
提出日時 2019-04-25 14:09:38
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 211 bytes
コンパイル時間 1,040 ms
コンパイル使用メモリ 32,020 KB
実行使用メモリ 32,276 KB
最終ジャッジ日時 2024-04-29 20:27:35
合計ジャッジ時間 1,415 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

    function PageCalculator($n) {
      $first_edition  = 316;
      $increase       = 52;

      $page_num = $first_edition + ($increase * ($n - 1));

      return $page_num;
    }

    echo PageCalculator($n);
0