結果

問題 No.1648 Sum of Powers
ユーザー convexineqconvexineq
提出日時 2021-08-13 22:33:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 421 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 101,360 KB
最終ジャッジ日時 2024-10-03 20:17:44
合計ジャッジ時間 7,830 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
92,848 KB
testcase_01 AC 53 ms
69,972 KB
testcase_02 AC 74 ms
96,272 KB
testcase_03 AC 71 ms
93,780 KB
testcase_04 AC 75 ms
94,588 KB
testcase_05 AC 70 ms
93,676 KB
testcase_06 AC 73 ms
95,100 KB
testcase_07 AC 71 ms
94,164 KB
testcase_08 AC 72 ms
94,368 KB
testcase_09 AC 72 ms
94,312 KB
testcase_10 AC 70 ms
94,488 KB
testcase_11 AC 67 ms
94,388 KB
testcase_12 AC 72 ms
95,812 KB
testcase_13 AC 68 ms
93,860 KB
testcase_14 AC 68 ms
92,972 KB
testcase_15 AC 71 ms
94,456 KB
testcase_16 AC 71 ms
94,244 KB
testcase_17 AC 73 ms
94,808 KB
testcase_18 AC 67 ms
92,960 KB
testcase_19 AC 67 ms
93,428 KB
testcase_20 AC 65 ms
93,084 KB
testcase_21 AC 69 ms
94,060 KB
testcase_22 AC 70 ms
94,328 KB
testcase_23 AC 69 ms
94,660 KB
testcase_24 AC 69 ms
94,076 KB
testcase_25 AC 68 ms
94,996 KB
testcase_26 AC 69 ms
94,748 KB
testcase_27 AC 71 ms
93,936 KB
testcase_28 AC 71 ms
94,912 KB
testcase_29 AC 71 ms
95,120 KB
testcase_30 AC 76 ms
94,820 KB
testcase_31 AC 77 ms
95,360 KB
testcase_32 AC 74 ms
94,604 KB
testcase_33 AC 74 ms
94,280 KB
testcase_34 AC 75 ms
94,004 KB
testcase_35 AC 75 ms
94,752 KB
testcase_36 AC 69 ms
95,548 KB
testcase_37 AC 72 ms
94,836 KB
testcase_38 AC 71 ms
95,348 KB
testcase_39 AC 71 ms
95,416 KB
testcase_40 AC 70 ms
95,076 KB
testcase_41 AC 72 ms
95,080 KB
testcase_42 AC 70 ms
94,668 KB
testcase_43 AC 71 ms
95,512 KB
testcase_44 AC 70 ms
95,056 KB
testcase_45 AC 73 ms
94,912 KB
testcase_46 AC 75 ms
94,320 KB
testcase_47 AC 73 ms
95,900 KB
testcase_48 AC 51 ms
71,236 KB
testcase_49 AC 74 ms
94,808 KB
testcase_50 AC 72 ms
95,276 KB
testcase_51 AC 47 ms
70,304 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 70 ms
94,936 KB
testcase_56 AC 73 ms
94,676 KB
testcase_57 AC 52 ms
71,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
a,b,p,q = map(int,input().split())

T = 10**5+1
memo = {}
f = lambda x,y: (y,(a*y-b*x)%MOD)
B = (q,p)
for i in range(T):
    memo[B] = i
    B = f(*B)

v,w = (1,0),(0,1)
for _ in range(T):
    v,w = f(*v),f(*w)
c1,c2 = v
c3,c4 = w
g = lambda x,y: ((c1*x+c3*y)%MOD,(c2*x+c4*y)%MOD)

s = f(2,a)
for j in range(1,T+1):
    s = g(*s)
    if s in memo:
        i = memo[s]
        print(j*T-i+2)
        exit()
0