結果
問題 | No.1253 雀見椪 |
ユーザー | flippergo |
提出日時 | 2020-12-26 14:11:43 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 950 ms / 2,000 ms |
コード長 | 587 bytes |
コンパイル時間 | 297 ms |
コンパイル使用メモリ | 82,148 KB |
実行使用メモリ | 82,736 KB |
最終ジャッジ日時 | 2024-09-24 17:13:00 |
合計ジャッジ時間 | 10,526 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,676 KB |
testcase_01 | AC | 46 ms
60,836 KB |
testcase_02 | AC | 87 ms
75,848 KB |
testcase_03 | AC | 209 ms
76,308 KB |
testcase_04 | AC | 888 ms
79,884 KB |
testcase_05 | AC | 877 ms
79,296 KB |
testcase_06 | AC | 911 ms
82,736 KB |
testcase_07 | AC | 950 ms
80,224 KB |
testcase_08 | AC | 886 ms
82,508 KB |
testcase_09 | AC | 911 ms
81,348 KB |
testcase_10 | AC | 912 ms
81,028 KB |
testcase_11 | AC | 936 ms
81,612 KB |
testcase_12 | AC | 847 ms
80,152 KB |
testcase_13 | AC | 840 ms
79,388 KB |
testcase_14 | AC | 45 ms
61,108 KB |
ソースコード
p = 10**9+7 def pow(x,m): if m==0: return 1 if m==1: return x if m%2==0: return (pow(x,m//2)**2)%p else: return (x*(pow(x,(m-1)//2)**2)%p)%p T = int(input()) for _ in range(T): N,AG,BG,AC,BC,AP,BP = map(int,input().split()) n = N%(p-1) S = 1 S = (S+2*pow(AG,n)*pow(pow(BG,n),p-2))%p S = (S+2*pow(AC,n)*pow(pow(BC,n),p-2))%p S = (S+2*pow(AP,n)*pow(pow(BP,n),p-2))%p S = (S-pow(BG-AG,n)*pow(pow(BG,n),p-2))%p S = (S-pow(BC-AC,n)*pow(pow(BC,n),p-2))%p S = (S-pow(BP-AP,n)*pow(pow(BP,n),p-2))%p print(S)