結果
問題 | No.1136 Four Points Tour |
ユーザー | flippergo |
提出日時 | 2020-12-24 14:01:38 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 488 bytes |
コンパイル時間 | 87 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 49,212 KB |
最終ジャッジ日時 | 2024-09-21 16:54:55 |
合計ジャッジ時間 | 11,025 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 517 ms
49,212 KB |
testcase_01 | AC | 517 ms
43,720 KB |
testcase_02 | AC | 523 ms
44,100 KB |
testcase_03 | AC | 518 ms
44,352 KB |
testcase_04 | AC | 521 ms
43,708 KB |
testcase_05 | AC | 519 ms
43,848 KB |
testcase_06 | AC | 518 ms
43,720 KB |
testcase_07 | TLE | - |
testcase_08 | AC | 518 ms
43,704 KB |
testcase_09 | AC | 522 ms
44,040 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
01_Sample03_evil.txt | -- | - |
04_Rnd_large_evil1.txt | -- | - |
04_Rnd_large_evil2.txt | -- | - |
04_Rnd_large_evil3.txt | -- | - |
04_Rnd_large_evil4.txt | -- | - |
04_Rnd_large_evil5.txt | -- | - |
04_Rnd_large_evil6.txt | -- | - |
04_Rnd_large_evil7.txt | -- | - |
04_Rnd_large_evil8.txt | -- | - |
04_Rnd_large_evil9.txt | -- | - |
04_Rnd_large_evil10.txt | -- | - |
05_Rnd_huge_evil1.txt | -- | - |
05_Rnd_huge_evil2.txt | -- | - |
05_Rnd_huge_evil3.txt | -- | - |
05_Rnd_huge_evil4.txt | -- | - |
05_Rnd_huge_evil5.txt | -- | - |
05_Rnd_huge_evil6.txt | -- | - |
05_Rnd_huge_evil7.txt | -- | - |
99_evil_01.txt | -- | - |
ソースコード
import numpy as np p = 10**9+7 I = np.array([[1,0,0,0],[0,1,0,0],[0,0,1,0],[0,0,0,1]],dtype=np.int64) def pow(A,n): if n==0: return I if n==1: return A if n%2==0: return (np.matmul(pow(A,n//2),pow(A,n//2)))%p else: return np.matmul(A,np.matmul(pow(A,(n-1)//2),pow(A,(n-1)//2))%p)%p A = np.array([[0,1,1,1],[1,0,1,1],[1,1,0,1],[1,1,1,0]],dtype=np.int64) N = int(input()) a = np.matmul(np.array([1,0,0,0],dtype=np.int64),pow(A,N)) print(a[0])