結果

問題 No.16 累乗の加算
ユーザー quilt-tailsquilt-tails
提出日時 2016-11-12 01:12:07
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 121 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 101,228 KB
最終ジャッジ日時 2024-11-25 10:48:32
合計ジャッジ時間 46,119 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
18,852 KB
testcase_01 AC 80 ms
64,820 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 TLE -
testcase_08 WA -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 74 ms
63,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

x, n = gets.split.map(&:to_i)
a = gets.split.map(&:to_i)
sum = 0
n.times do |i|
  sum += x ** a[i]
end
puts sum % 1000003
0