結果

問題 No.1648 Sum of Powers
ユーザー convexineqconvexineq
提出日時 2021-08-13 22:53:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 518 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 101,416 KB
最終ジャッジ日時 2024-10-03 21:40:18
合計ジャッジ時間 8,082 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 48 ms
63,436 KB
testcase_02 AC 93 ms
101,200 KB
testcase_03 AC 90 ms
101,000 KB
testcase_04 AC 90 ms
100,872 KB
testcase_05 AC 85 ms
100,732 KB
testcase_06 AC 89 ms
101,416 KB
testcase_07 AC 87 ms
100,796 KB
testcase_08 AC 91 ms
101,048 KB
testcase_09 AC 90 ms
100,872 KB
testcase_10 AC 91 ms
101,044 KB
testcase_11 AC 89 ms
101,036 KB
testcase_12 AC 91 ms
100,996 KB
testcase_13 AC 88 ms
100,684 KB
testcase_14 AC 86 ms
101,224 KB
testcase_15 AC 90 ms
100,808 KB
testcase_16 AC 88 ms
101,112 KB
testcase_17 AC 90 ms
100,740 KB
testcase_18 AC 87 ms
100,728 KB
testcase_19 AC 88 ms
101,136 KB
testcase_20 AC 86 ms
100,936 KB
testcase_21 AC 89 ms
101,208 KB
testcase_22 AC 91 ms
100,664 KB
testcase_23 AC 90 ms
100,960 KB
testcase_24 AC 89 ms
100,956 KB
testcase_25 AC 88 ms
100,716 KB
testcase_26 AC 89 ms
100,592 KB
testcase_27 AC 91 ms
101,212 KB
testcase_28 AC 91 ms
100,596 KB
testcase_29 AC 88 ms
100,996 KB
testcase_30 AC 90 ms
101,232 KB
testcase_31 AC 93 ms
100,592 KB
testcase_32 AC 89 ms
100,936 KB
testcase_33 AC 89 ms
101,056 KB
testcase_34 AC 88 ms
101,256 KB
testcase_35 AC 88 ms
101,324 KB
testcase_36 AC 90 ms
100,804 KB
testcase_37 AC 94 ms
101,292 KB
testcase_38 AC 91 ms
101,116 KB
testcase_39 AC 92 ms
101,056 KB
testcase_40 AC 90 ms
100,612 KB
testcase_41 AC 92 ms
101,084 KB
testcase_42 AC 98 ms
100,988 KB
testcase_43 AC 90 ms
100,676 KB
testcase_44 AC 89 ms
100,732 KB
testcase_45 AC 91 ms
101,072 KB
testcase_46 AC 91 ms
101,248 KB
testcase_47 AC 91 ms
100,784 KB
testcase_48 AC 47 ms
63,720 KB
testcase_49 AC 88 ms
100,788 KB
testcase_50 AC 90 ms
101,024 KB
testcase_51 AC 47 ms
64,352 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 95 ms
100,808 KB
testcase_56 AC 90 ms
100,996 KB
testcase_57 AC 47 ms
63,748 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)

s = (2,a)
for i in range(T):
    if s == (q,p):
        print(i+2)
        exit()
    s = f(*s)

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