結果

問題 No.16 累乗の加算
ユーザー shi-moshi-mo
提出日時 2016-10-19 19:31:35
言語 D
(dmd 2.106.1)
結果
MLE  
実行時間 -
コード長 447 bytes
コンパイル時間 1,445 ms
コンパイル使用メモリ 142,240 KB
実行使用メモリ 784,588 KB
最終ジャッジ日時 2024-06-12 04:39:03
合計ジャッジ時間 7,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,812 KB
testcase_02 MLE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 MLE -
testcase_07 RE -
testcase_08 RE -
testcase_09 MLE -
testcase_10 RE -
testcase_11 MLE -
testcase_12 RE -
testcase_13 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.string;
import std.array;
import std.algorithm;
import std.conv;

void main() {
    ulong x, n; readf("%s %s\n", &x, &n);
    ulong[] a = readln.strip.split.map!(to!ulong).array;

    const ulong M = 1000003;
    ulong[] m = new ulong[a[n-1] + 1];
    m[0] = 1;
    if (0 < a[n-1]) { m[1] = x % M; }
    foreach (i; 2..(a[n-1]+1)) {
        m[i] = (m[i-1] * m[1]) % M;
    }
    writeln(a.map!(ai => m[ai]).sum % M);
}
0