結果
問題 | No.16 累乗の加算 |
ユーザー | toshiro_yanagi |
提出日時 | 2018-06-19 07:38:32 |
言語 | Nim (2.0.2) |
結果 |
TLE
|
実行時間 | - |
コード長 | 258 bytes |
コンパイル時間 | 3,725 ms |
コンパイル使用メモリ | 66,284 KB |
実行使用メモリ | 14,016 KB |
最終ジャッジ日時 | 2024-06-30 17:10:54 |
合計ジャッジ時間 | 10,567 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
ソースコード
import strutils, sequtils, math const M = 10 ^ 6 + 3 let xN, a = stdin.readLine.split.map parseInt (x, N) = (xN[0], xN[1]) var ttl = newSeq[int](N) for i, a_i in a: var y = 1 for j in 0 ..< a_i: y = (y * x) mod M ttl[i] = y echo ttl.sum