結果

問題 No.16 累乗の加算
ユーザー DialBirdDialBird
提出日時 2017-02-12 19:32:13
言語 Ruby
(3.3.0)
結果
AC  
実行時間 97 ms / 5,000 ms
コード長 440 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 20,224 KB
最終ジャッジ日時 2024-06-26 05:19:47
合計ジャッジ時間 2,037 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
19,968 KB
testcase_01 AC 94 ms
19,840 KB
testcase_02 AC 93 ms
20,096 KB
testcase_03 AC 93 ms
20,096 KB
testcase_04 AC 95 ms
20,224 KB
testcase_05 AC 97 ms
20,096 KB
testcase_06 AC 91 ms
19,968 KB
testcase_07 AC 92 ms
20,096 KB
testcase_08 AC 94 ms
20,096 KB
testcase_09 AC 92 ms
19,968 KB
testcase_10 AC 93 ms
19,968 KB
testcase_11 AC 91 ms
20,096 KB
testcase_12 AC 94 ms
20,096 KB
testcase_13 AC 92 ms
19,968 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

x, N = gets.chomp.split.map(&:to_i)
@devider = 1000003
list = gets.chomp.split.map{ |i| i.to_i % (@devider - 1) }

dp = Array.new(@devider, -1)

x %= @devider

def my_pow(n, idx)
  res = 1
  if idx > 0
    res = my_pow(n*n % @devider, idx/2)
    res = res * n % @devider if idx & 1 == 1
  end
  return res % @devider
end

result = 0
list.each do |l|
  if dp[l] == -1
    dp[l] = my_pow(x, l)
  end
  result += dp[l]
end

p result % @devider
0