結果

問題 No.16 累乗の加算
ユーザー shi-moshi-mo
提出日時 2016-10-19 19:40:30
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 978 ms / 5,000 ms
コード長 472 bytes
コンパイル時間 2,530 ms
コンパイル使用メモリ 148,472 KB
実行使用メモリ 393,416 KB
最終ジャッジ日時 2024-06-12 04:39:35
合計ジャッジ時間 11,337 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 978 ms
393,124 KB
testcase_03 AC 302 ms
151,920 KB
testcase_04 AC 380 ms
192,280 KB
testcase_05 AC 457 ms
222,888 KB
testcase_06 AC 582 ms
274,812 KB
testcase_07 AC 646 ms
300,272 KB
testcase_08 AC 791 ms
352,392 KB
testcase_09 AC 864 ms
383,296 KB
testcase_10 AC 842 ms
376,928 KB
testcase_11 AC 891 ms
393,416 KB
testcase_12 AC 883 ms
391,284 KB
testcase_13 AC 911 ms
390,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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