結果

問題 No.1648 Sum of Powers
ユーザー convexineqconvexineq
提出日時 2021-08-13 22:35:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 81,892 KB
実行使用メモリ 129,532 KB
最終ジャッジ日時 2024-10-03 20:25:06
合計ジャッジ時間 8,856 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
129,148 KB
testcase_01 AC 62 ms
75,524 KB
testcase_02 AC 109 ms
128,720 KB
testcase_03 AC 105 ms
128,836 KB
testcase_04 AC 108 ms
129,232 KB
testcase_05 AC 109 ms
128,720 KB
testcase_06 AC 104 ms
128,824 KB
testcase_07 AC 102 ms
129,116 KB
testcase_08 AC 107 ms
129,180 KB
testcase_09 AC 102 ms
129,532 KB
testcase_10 AC 107 ms
128,900 KB
testcase_11 AC 108 ms
129,304 KB
testcase_12 AC 106 ms
128,860 KB
testcase_13 AC 103 ms
129,436 KB
testcase_14 AC 104 ms
129,044 KB
testcase_15 AC 106 ms
128,856 KB
testcase_16 AC 104 ms
129,124 KB
testcase_17 AC 108 ms
128,836 KB
testcase_18 AC 106 ms
129,112 KB
testcase_19 AC 108 ms
128,892 KB
testcase_20 AC 108 ms
129,088 KB
testcase_21 AC 111 ms
128,788 KB
testcase_22 AC 114 ms
128,780 KB
testcase_23 AC 115 ms
129,340 KB
testcase_24 AC 111 ms
129,388 KB
testcase_25 AC 112 ms
128,980 KB
testcase_26 AC 107 ms
128,748 KB
testcase_27 AC 104 ms
128,868 KB
testcase_28 AC 108 ms
129,328 KB
testcase_29 AC 108 ms
129,128 KB
testcase_30 AC 107 ms
129,328 KB
testcase_31 AC 109 ms
129,404 KB
testcase_32 AC 106 ms
129,104 KB
testcase_33 AC 105 ms
128,732 KB
testcase_34 AC 104 ms
129,328 KB
testcase_35 AC 108 ms
128,780 KB
testcase_36 AC 107 ms
129,052 KB
testcase_37 AC 110 ms
128,860 KB
testcase_38 AC 109 ms
128,848 KB
testcase_39 AC 110 ms
129,120 KB
testcase_40 AC 107 ms
128,900 KB
testcase_41 AC 116 ms
129,080 KB
testcase_42 AC 107 ms
128,920 KB
testcase_43 AC 105 ms
129,340 KB
testcase_44 AC 109 ms
128,992 KB
testcase_45 AC 108 ms
129,248 KB
testcase_46 AC 109 ms
129,088 KB
testcase_47 AC 106 ms
128,924 KB
testcase_48 AC 59 ms
75,448 KB
testcase_49 AC 106 ms
129,112 KB
testcase_50 AC 111 ms
129,420 KB
testcase_51 AC 59 ms
75,340 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 109 ms
128,904 KB
testcase_56 AC 110 ms
129,228 KB
testcase_57 AC 57 ms
75,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

T = 2*10**5
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