結果

問題 No.2356 Back Door Tour in Four Seasons
ユーザー titiatitia
提出日時 2023-06-20 08:19:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 848 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 22,740 KB
最終ジャッジ日時 2024-06-27 19:21:41
合計ジャッジ時間 17,218 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 711 ms
22,652 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 834 ms
22,580 KB
testcase_09 AC 848 ms
22,456 KB
testcase_10 AC 838 ms
22,612 KB
testcase_11 AC 847 ms
22,732 KB
testcase_12 AC 846 ms
22,544 KB
testcase_13 AC 834 ms
22,632 KB
testcase_14 AC 840 ms
22,740 KB
testcase_15 AC 434 ms
16,768 KB
testcase_16 AC 779 ms
21,668 KB
testcase_17 AC 803 ms
21,816 KB
testcase_18 AC 763 ms
21,532 KB
testcase_19 AC 438 ms
16,828 KB
testcase_20 AC 757 ms
21,384 KB
testcase_21 AC 630 ms
19,412 KB
testcase_22 AC 442 ms
17,144 KB
testcase_23 AC 329 ms
15,072 KB
testcase_24 AC 813 ms
21,936 KB
testcase_25 AC 50 ms
11,008 KB
testcase_26 AC 628 ms
19,356 KB
testcase_27 AC 793 ms
21,876 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 29 ms
10,624 KB
testcase_30 AC 307 ms
22,400 KB
testcase_31 AC 296 ms
22,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())

mod=998244353

U=[]
F=[]
W=[]
P=[]

for i in range(N):
    x,y=input().split()
    y=int(y)

    if x=="U":
        U.append(y)
    elif x=="F":
        F.append(y)
    elif x=="W":
        W.append(y)
    else:
        P.append(y)
        
c=(N-2)*pow(N-1,mod-2,mod)%mod

ux=0
for a in U:
    ux+=1-pow(c,a,mod)
    ux%=mod

fx=0
for a in F:
    fx+=1-pow(c,a,mod)
    fx%=mod

wx=0
for a in W:
    wx+=1-pow(c,a,mod)
    wx%=mod

SUM=sum(U)+sum(F)+sum(W)+sum(P)

ANS2=ux*fx*wx*pow(N-1,SUM,mod)%mod

print(ANS2*len(P)%mod)
0