結果
問題 | No.435 占い(Extra) |
ユーザー | titia |
提出日時 | 2023-04-26 02:32:48 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 867 bytes |
コンパイル時間 | 302 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 21,760 KB |
最終ジャッジ日時 | 2024-11-15 11:12:21 |
合計ジャッジ時間 | 59,594 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
17,700 KB |
testcase_01 | WA | - |
testcase_02 | AC | 31 ms
16,128 KB |
testcase_03 | AC | 32 ms
21,504 KB |
testcase_04 | AC | 30 ms
16,128 KB |
testcase_05 | AC | 32 ms
21,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 34 ms
17,572 KB |
testcase_08 | AC | 45 ms
16,128 KB |
testcase_09 | AC | 45 ms
21,504 KB |
testcase_10 | AC | 173 ms
16,000 KB |
testcase_11 | AC | 169 ms
21,248 KB |
testcase_12 | AC | 1,406 ms
17,700 KB |
testcase_13 | AC | 1,375 ms
10,752 KB |
testcase_14 | AC | 1,383 ms
17,824 KB |
testcase_15 | AC | 1,357 ms
17,700 KB |
testcase_16 | AC | 1,315 ms
17,568 KB |
testcase_17 | AC | 1,893 ms
21,504 KB |
testcase_18 | AC | 1,419 ms
17,568 KB |
testcase_19 | AC | 1,402 ms
21,248 KB |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | WA | - |
testcase_29 | TLE | - |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
ソースコード
# 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()) now=x flag0=0 if now==0: flag0=1 ANS=0 TWO=1 THREE=0 for i in range(n): if i==0: ANS=(ANS+now%10)%9 continue now=((now^a)+b)%m if i==n-1: ANS=(ANS+now%10)%9 continue if now%10!=0: flag0=0 x=i while x%3==0: x//=3 THREE-=1 TWO=TWO*INV[x%9]%9 x=n-i while x%3==0: x//=3 THREE+=1 TWO=TWO*x%9 #print(TWO,THREE) if THREE==0: ANS=(ANS+(now%10)*TWO)%9 elif THREE==1: ANS=(ANS+(now%10)*TWO*3)%9 if ANS==0: ANS=9 print(ANS)