結果

問題 No.2356 Back Door Tour in Four Seasons
ユーザー 👑 p-adicp-adic
提出日時 2023-07-27 10:04:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,178 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 193,152 KB
最終ジャッジ日時 2024-10-04 03:01:47
合計ジャッジ時間 24,287 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 1,090 ms
193,152 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 1,093 ms
193,152 KB
testcase_09 AC 1,147 ms
192,768 KB
testcase_10 AC 1,145 ms
193,152 KB
testcase_11 AC 1,154 ms
192,768 KB
testcase_12 AC 1,152 ms
192,896 KB
testcase_13 AC 1,152 ms
193,024 KB
testcase_14 AC 1,149 ms
192,896 KB
testcase_15 AC 632 ms
134,528 KB
testcase_16 AC 1,108 ms
184,368 KB
testcase_17 AC 1,178 ms
187,088 KB
testcase_18 AC 1,057 ms
182,872 KB
testcase_19 AC 642 ms
135,808 KB
testcase_20 AC 1,021 ms
180,864 KB
testcase_21 AC 875 ms
161,664 KB
testcase_22 AC 611 ms
135,448 KB
testcase_23 AC 481 ms
118,912 KB
testcase_24 AC 1,112 ms
187,124 KB
testcase_25 AC 119 ms
78,080 KB
testcase_26 AC 891 ms
161,792 KB
testcase_27 AC 1,082 ms
186,496 KB
testcase_28 AC 41 ms
52,352 KB
testcase_29 AC 41 ms
51,968 KB
testcase_30 AC 1,074 ms
193,104 KB
testcase_31 AC 1,069 ms
192,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I=input
Q=998244353
N=int(I())
C=[I().split()for n in range(N)]
C=[c+[pow(N-1,int(c[1]),Q),1-pow(N-2,int(c[1]),Q)*pow(N-1,-int(c[1]),Q)*(c[0]!="P")]for c in C]
S="UFWP"
a=1
for c in C:a=a*c[2]%Q
for s in S:a=a*sum((s==c[0])*c[3]for c in C)%Q
print(a)
0