Skip to content

Instantly share code, notes, and snippets.

@monhime
Created September 13, 2020 23:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save monhime/80f36b559a1de49d299d6c77bd0b2003 to your computer and use it in GitHub Desktop.
Save monhime/80f36b559a1de49d299d6c77bd0b2003 to your computer and use it in GitHub Desktop.
ABC178 C問題 解答
import sys
def input(): return sys.stdin.readline().rstrip()
def main():
n = int(input())
mod = 10**9+7
print((pow(10,n,mod)-2*pow(9,n,mod)+pow(8,n,mod))%mod)
if __name__=='__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment