結果

問題 No.16 累乗の加算
ユーザー papinianuspapinianus
提出日時 2016-09-29 12:55:19
言語 PHP
(8.3.4)
結果
TLE  
実行時間 -
コード長 415 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 31,892 KB
実行使用メモリ 64,796 KB
最終ジャッジ日時 2024-11-21 10:27:22
合計ジャッジ時間 75,160 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
64,796 KB
testcase_01 AC 38 ms
64,620 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
define("DIVIDER", 1000003);
list($base, $null) = explode(" ", trim(fgets(STDIN)));
$pows = explode(" ", trim(fgets(STDIN)));
$ans = 0;
foreach($pows as $pow)
{
    $ans += dividingpow($base,$pow,DIVIDER);
    $ans %= DIVIDER;
}
echo $ans.PHP_EOL;

function dividingpow($base, $pow, $divider)
{
    $ans = 1;
    for(;$pow;$pow--)
    {
        $ans *= $base;
        $ans %= $divider;
    }
    return $ans;
}
0