結果
問題 | No.2356 Back Door Tour in Four Seasons |
ユーザー | timi |
提出日時 | 2023-06-22 17:14:56 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 941 bytes |
コンパイル時間 | 153 ms |
コンパイル使用メモリ | 82,036 KB |
実行使用メモリ | 90,656 KB |
最終ジャッジ日時 | 2024-06-30 00:08:09 |
合計ジャッジ時間 | 10,902 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,256 KB |
testcase_01 | AC | 38 ms
53,176 KB |
testcase_02 | AC | 34 ms
52,556 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 33 ms
53,672 KB |
testcase_06 | AC | 32 ms
52,768 KB |
testcase_07 | AC | 33 ms
53,716 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 35 ms
52,748 KB |
testcase_29 | AC | 34 ms
53,740 KB |
testcase_30 | AC | 179 ms
90,048 KB |
testcase_31 | WA | - |
ソースコード
N=int(input()) D={};mod=998244353 D['U']=[];D['F']=[];D['W']=[];D['P']=[] def xgcd(a, b): x0, y0, x1, y1 = 1, 0, 0, 1 while b != 0: q, a, b = a // b, b, a % b x0, x1 = x1, x0 - q * x1 y0, y1 = y1, y0 - q * y1 return a, x0, y0 def modinv(a, m): g, x, y = xgcd(a, m) if g != 1: raise Exception('modular inverse does not exist') else: return x % m al=0;A=[] for _ in range(N): x,y=input().split() y=int(y) al+=y D[x].append(y) a,b,c=0,0,0 zz=modinv(N-1,mod) for u in D['U']: x=pow(N-1,u,mod) y=pow(N-2,u,mod) z=pow(zz,u,mod) d=(x-y)*z%mod a+=d a%=mod for u in D['F']: x=pow(N-1,u,mod) y=pow(N-2,u,mod) z=pow(zz,u,mod) d=(x-y)*z%mod b+=d b%=mod for u in D['W']: x=pow(N-1,u,mod) y=pow(N-2,u,mod) z=pow(zz,u,mod) d=(x-y)*z%mod c+=d c%=mod d=pow(N-1,al,mod) ans=a ans*=b ans%=mod ans*=c ans%=mod ans*=d ans%=mod print(ans)