結果
問題 | No.16 累乗の加算 |
ユーザー | te-sh |
提出日時 | 2017-01-11 19:25:50 |
言語 | D (dmd 2.106.1) |
結果 |
MLE
|
実行時間 | - |
コード長 | 403 bytes |
コンパイル時間 | 734 ms |
コンパイル使用メモリ | 103,208 KB |
実行使用メモリ | 784,640 KB |
最終ジャッジ日時 | 2024-06-12 06:21:05 |
合計ジャッジ時間 | 12,405 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | MLE | - |
testcase_03 | AC | 442 ms
301,340 KB |
testcase_04 | AC | 487 ms
382,156 KB |
testcase_05 | AC | 548 ms
443,340 KB |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
ソースコード
import std.algorithm, std.conv, std.range, std.stdio, std.string; const md = 1_000_003L; void main() { auto rd = readln.split, x = rd[0].to!long, n = rd[1].to!size_t; auto ai = readln.split.to!(long[]); auto maxA = ai.reduce!max; auto xi = new long[](maxA + 1); xi[0] = 1; foreach (i; maxA.iota) xi[i + 1] = (xi[i] * x) % md; auto r = ai.map!(a => xi[a]).sum % md; writeln(r); }