Skip to content

Instantly share code, notes, and snippets.

@magurofly
Last active August 12, 2021 16:02
Show Gist options
  • Save magurofly/4b00ea21d9667722a419a43691c72323 to your computer and use it in GitHub Desktop.
Save magurofly/4b00ea21d9667722a419a43691c72323 to your computer and use it in GitHub Desktop.
愚直解 https%3A//twitter.com/realDivineJK/status/1425847790345748492
N, K, M = gets.split.map(&:to_i)
sum = 0
(1 .. N).each do |i|
sum += i.pow(K, M)
sum %= M
end
puts sum
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment