結果

問題 No.1648 Sum of Powers
ユーザー convexineqconvexineq
提出日時 2021-08-13 23:01:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 95,104 KB
最終ジャッジ日時 2024-10-03 22:15:39
合計ジャッジ時間 7,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
92,672 KB
testcase_01 AC 56 ms
70,016 KB
testcase_02 AC 80 ms
94,336 KB
testcase_03 AC 81 ms
93,184 KB
testcase_04 AC 81 ms
94,464 KB
testcase_05 AC 78 ms
93,056 KB
testcase_06 AC 81 ms
94,464 KB
testcase_07 AC 80 ms
92,928 KB
testcase_08 AC 80 ms
94,592 KB
testcase_09 AC 80 ms
94,464 KB
testcase_10 AC 80 ms
94,464 KB
testcase_11 AC 77 ms
92,928 KB
testcase_12 AC 78 ms
94,080 KB
testcase_13 AC 76 ms
93,312 KB
testcase_14 AC 76 ms
92,928 KB
testcase_15 AC 79 ms
94,236 KB
testcase_16 AC 78 ms
94,208 KB
testcase_17 AC 79 ms
94,208 KB
testcase_18 AC 75 ms
92,928 KB
testcase_19 AC 75 ms
92,928 KB
testcase_20 AC 75 ms
92,672 KB
testcase_21 AC 78 ms
94,464 KB
testcase_22 AC 79 ms
94,464 KB
testcase_23 AC 79 ms
93,824 KB
testcase_24 AC 82 ms
94,336 KB
testcase_25 AC 80 ms
94,208 KB
testcase_26 AC 79 ms
94,492 KB
testcase_27 AC 79 ms
94,336 KB
testcase_28 AC 80 ms
94,080 KB
testcase_29 AC 79 ms
94,080 KB
testcase_30 AC 80 ms
94,720 KB
testcase_31 AC 81 ms
94,976 KB
testcase_32 AC 80 ms
93,952 KB
testcase_33 AC 78 ms
94,080 KB
testcase_34 AC 78 ms
93,824 KB
testcase_35 AC 79 ms
94,080 KB
testcase_36 AC 80 ms
94,592 KB
testcase_37 AC 83 ms
95,104 KB
testcase_38 AC 80 ms
94,464 KB
testcase_39 AC 85 ms
94,948 KB
testcase_40 AC 82 ms
94,208 KB
testcase_41 AC 84 ms
94,812 KB
testcase_42 AC 81 ms
93,952 KB
testcase_43 AC 80 ms
94,336 KB
testcase_44 AC 79 ms
94,336 KB
testcase_45 AC 80 ms
94,464 KB
testcase_46 AC 89 ms
94,208 KB
testcase_47 AC 81 ms
94,428 KB
testcase_48 AC 58 ms
69,888 KB
testcase_49 AC 84 ms
93,952 KB
testcase_50 AC 83 ms
94,080 KB
testcase_51 AC 54 ms
69,888 KB
testcase_52 AC 80 ms
92,800 KB
testcase_53 AC 78 ms
93,056 KB
testcase_54 AC 76 ms
92,800 KB
testcase_55 AC 82 ms
94,208 KB
testcase_56 AC 80 ms
94,336 KB
testcase_57 AC 54 ms
69,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

T = 10**5+9
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 = (2,a)
for j in range(1,T+1):
    s = g(*s)
    if s in memo:
        i = memo[s]
        print(j*T-i+1)
        exit()
0