結果

問題 No.2356 Back Door Tour in Four Seasons
ユーザー minimumminimum
提出日時 2023-06-16 22:04:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 372 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 166,104 KB
最終ジャッジ日時 2024-06-24 14:19:46
合計ジャッジ時間 4,252 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,612 KB
testcase_01 AC 37 ms
52,876 KB
testcase_02 AC 38 ms
53,376 KB
testcase_03 AC 37 ms
54,160 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
N = int(input())
ls = [0, 0, 0, 0]
S = "UFWP"
suma = 0
C = ((N - 2) * pow(N - 1, -1, MOD)) % MOD
cnt = 0
for i in range(N):
    s, a = input().split(' ')
    a = int(a)
    ls[S.find(s)] += (1 - pow(C, a))
    ls[S.find(s)] %= MOD
    suma += a
    if s == 'P':
        cnt += 1

ans = (ls[0] * ls[1] * ls[2] * cnt * pow(N - 1, suma, MOD)) % MOD
print(ans)
0