結果

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

テストケース

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

ソースコード

diff #

class Solve
  def initialize
    @devider = 1000003
    @x, _ = gets.chomp.split.map(&:to_i)
    @list = gets.chomp.split.map{ |i| i.to_i % (@devider - 1) }
    @dp = Array.new(@devider, -1)
    
    @x %= @devider
  end

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

    p result % @devider
  end

  private

  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
end

Solve.new.run
0