結果
問題 | No.16 累乗の加算 |
ユーザー | tsuchinaga |
提出日時 | 2019-03-26 15:45:37 |
言語 | Go (1.22.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 367 bytes |
コンパイル時間 | 11,876 ms |
コンパイル使用メモリ | 223,952 KB |
実行使用メモリ | 10,296 KB |
最終ジャッジ日時 | 2024-10-11 01:26:09 |
合計ジャッジ時間 | 17,986 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 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 | -- | - |
ソースコード
package main import ( "fmt" "math" ) func main() { var x, y, n, a, ans int _, _ = fmt.Scan(&x, &n) mod := int(math.Pow10(6)) + 3 // fmt.Println(mod) for i := 0; i < n; i++ { _, _ = fmt.Scan(&a) y = x if a == 0 { y = 1 } else { for j := 1; j < a; j++ { y = (y * x) % mod } } // fmt.Println(x, a, y) ans += y } fmt.Println(ans) }