結果

問題 No.492 IOI数列
ユーザー 0w10w1
提出日時 2017-04-10 19:18:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 47 ms / 1,000 ms
コード長 815 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 62,464 KB
最終ジャッジ日時 2024-07-18 05:43:19
合計ジャッジ時間 1,779 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 46 ms
61,952 KB
testcase_02 AC 47 ms
62,464 KB
testcase_03 AC 47 ms
61,056 KB
testcase_04 AC 38 ms
53,444 KB
testcase_05 AC 39 ms
52,828 KB
testcase_06 AC 44 ms
61,184 KB
testcase_07 AC 43 ms
61,696 KB
testcase_08 AC 39 ms
60,800 KB
testcase_09 AC 39 ms
60,780 KB
testcase_10 AC 33 ms
52,096 KB
testcase_11 AC 35 ms
51,968 KB
testcase_12 AC 33 ms
52,736 KB
testcase_13 AC 33 ms
52,224 KB
testcase_14 AC 33 ms
52,480 KB
testcase_15 AC 33 ms
52,480 KB
testcase_16 AC 33 ms
52,864 KB
testcase_17 AC 34 ms
52,480 KB
testcase_18 AC 34 ms
52,476 KB
testcase_19 AC 33 ms
52,352 KB
testcase_20 AC 36 ms
52,736 KB
testcase_21 AC 33 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD7 = int( 1e9 ) + 7
MOD1 = 101010101010101010101

N = int( input() )

A = [ [ 100, 1 ], [ 0, 1 ] ]
x = [ [ 1 ], [ 1 ] ]

def mat_mul( a, b, mod ):
  c = [ [ 0 for i in range( len( b[ 0 ] ) ) ] for j in range( len( a ) ) ]
  for i in range( len( a ) ):
    for k in range( len( a[ 0 ] ) ):
      for j in range( len( b[ 0 ] ) ):
        c[ i ][ j ] += a[ i ][ k ] * b[ k ][ j ]
        c[ i ][ j ] %= mod
  return c

def mat_pow( a, n, mod ):
  res = [ [ 0 for i in range( len( a ) ) ] for j in range( len( a ) ) ]
  for i in range( len( res ) ):
    res[ i ][ i ] = 1
  while n:
    if n & 1:
      res = mat_mul( res, a, mod )
    n >>= 1
    a = mat_mul( a, a, mod )
  return res

print( mat_mul( mat_pow( A, N - 1, MOD7 ), x, MOD7 )[ 0 ][ 0 ] )
print( mat_mul( mat_pow( A, N - 1, MOD1 ), x, MOD1 )[ 0 ][ 0 ] )
0