結果

問題 No.2356 Back Door Tour in Four Seasons
ユーザー 👑 p-adicp-adic
提出日時 2023-07-27 10:02:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,140 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 193,248 KB
最終ジャッジ日時 2024-10-04 02:58:00
合計ジャッジ時間 21,759 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,772 KB
testcase_01 AC 36 ms
53,532 KB
testcase_02 AC 36 ms
52,124 KB
testcase_03 AC 34 ms
52,380 KB
testcase_04 AC 918 ms
193,204 KB
testcase_05 AC 34 ms
52,352 KB
testcase_06 AC 33 ms
52,352 KB
testcase_07 AC 34 ms
51,840 KB
testcase_08 AC 908 ms
193,216 KB
testcase_09 AC 993 ms
193,164 KB
testcase_10 AC 982 ms
192,804 KB
testcase_11 AC 980 ms
193,248 KB
testcase_12 AC 994 ms
192,796 KB
testcase_13 AC 978 ms
193,228 KB
testcase_14 AC 1,140 ms
193,008 KB
testcase_15 AC 537 ms
134,836 KB
testcase_16 AC 932 ms
184,460 KB
testcase_17 AC 997 ms
187,172 KB
testcase_18 AC 886 ms
182,552 KB
testcase_19 AC 558 ms
135,676 KB
testcase_20 AC 862 ms
181,104 KB
testcase_21 AC 746 ms
161,952 KB
testcase_22 AC 522 ms
135,476 KB
testcase_23 AC 424 ms
119,144 KB
testcase_24 AC 926 ms
187,060 KB
testcase_25 AC 96 ms
77,756 KB
testcase_26 AC 736 ms
161,560 KB
testcase_27 AC 902 ms
186,160 KB
testcase_28 AC 34 ms
53,660 KB
testcase_29 AC 38 ms
53,300 KB
testcase_30 AC 919 ms
192,748 KB
testcase_31 AC 896 ms
192,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

I,R=input,range
Q=998244353
N=int(I())
C=[I().split()for n in R(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