結果

問題 No.793 うし数列 2
ユーザー eQeeQe
提出日時 2020-05-05 23:07:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 62,296 KB
最終ジャッジ日時 2024-06-27 07:05:40
合計ジャッジ時間 2,279 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,596 KB
testcase_01 AC 49 ms
61,496 KB
testcase_02 AC 49 ms
61,620 KB
testcase_03 AC 47 ms
61,728 KB
testcase_04 AC 47 ms
61,340 KB
testcase_05 AC 49 ms
61,420 KB
testcase_06 AC 48 ms
61,452 KB
testcase_07 AC 47 ms
61,056 KB
testcase_08 AC 47 ms
61,252 KB
testcase_09 AC 48 ms
60,828 KB
testcase_10 AC 49 ms
62,052 KB
testcase_11 AC 47 ms
61,504 KB
testcase_12 AC 48 ms
61,720 KB
testcase_13 AC 47 ms
60,832 KB
testcase_14 AC 47 ms
61,540 KB
testcase_15 AC 46 ms
61,272 KB
testcase_16 AC 48 ms
61,800 KB
testcase_17 AC 48 ms
62,296 KB
testcase_18 AC 47 ms
61,692 KB
testcase_19 AC 46 ms
60,520 KB
testcase_20 AC 47 ms
62,008 KB
testcase_21 AC 47 ms
61,332 KB
testcase_22 AC 48 ms
62,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import cmath
import sys
from collections import deque, defaultdict
from heapq import heappop,heappush
from copy import deepcopy

INF=10**18
MOD=10**9+7
MAX=10**5+7


def f(n):
  if n==0: return 0

  res=0
  if n&1:
    res+=pow(10, n-1, MOD)
    res%=MOD

  t=f(n//2)
  res+=(pow(10, n//2, MOD)*t+t)%MOD
  res%=MOD

  return res


def main():
  N=int(input())

  ans=(pow(10, N, MOD)+f(N)*3)%MOD
  print(ans)



if __name__=='__main__':
    main()
0