結果

問題 No.435 占い(Extra)
ユーザー titiatitia
提出日時 2023-04-26 01:17:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 868 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 386,296 KB
最終ジャッジ日時 2024-11-15 09:42:44
合計ジャッジ時間 62,850 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,128 KB
testcase_01 MLE -
testcase_02 MLE -
testcase_03 AC 32 ms
17,700 KB
testcase_04 AC 31 ms
16,128 KB
testcase_05 AC 31 ms
26,332 KB
testcase_06 AC 40 ms
16,128 KB
testcase_07 AC 33 ms
21,888 KB
testcase_08 AC 49 ms
16,512 KB
testcase_09 AC 48 ms
21,760 KB
testcase_10 AC 207 ms
20,096 KB
testcase_11 AC 199 ms
21,888 KB
testcase_12 MLE -
testcase_13 AC 1,782 ms
22,296 KB
testcase_14 MLE -
testcase_15 AC 1,715 ms
17,956 KB
testcase_16 MLE -
testcase_17 TLE -
testcase_18 MLE -
testcase_19 AC 1,762 ms
20,580 KB
testcase_20 MLE -
testcase_21 MLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 30 ms
10,880 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 3を除けば9の余りを考えて良い。

INV=[0,1,5,0,7,2,0,4,8]

T=int(input())
for tests in range(T):
    n,x,a,b,m=map(int,input().split())
    S=[0]*n
    S[0]=x
    
    for i in range(n-1):
        S[i+1]=((S[i]^a) +b)%m

    for i in range(n):
        S[i]%=10

    if S==[0]*len(S):
        print(0)
        continue

    ANS=0

    TWO=1
    THREE=0

    for i in range(len(S)):
        if i==0 or i==len(S)-1:
            ANS=(ANS+S[i])%9
            continue

        x=i

        while x%3==0:
            x//=3
            THREE-=1

        TWO=TWO*INV[x%9]%9

        x=len(S)-i

        while x%3==0:
            x//=3
            THREE+=1

        TWO=TWO*x%9

        #print(TWO,THREE)

        if THREE==0:
            ANS=(ANS+S[i]*TWO)%9
        elif THREE==1:
            ANS=(ANS+S[i]*TWO*3)%9

    if ANS==0:
        ANS=9

    print(ANS)
0