結果

問題 No.2356 Back Door Tour in Four Seasons
ユーザー flygonflygon
提出日時 2023-06-16 23:21:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 689 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 90,672 KB
最終ジャッジ日時 2024-06-24 16:33:58
合計ジャッジ時間 14,979 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,216 KB
testcase_01 AC 39 ms
53,532 KB
testcase_02 AC 38 ms
53,340 KB
testcase_03 AC 39 ms
53,056 KB
testcase_04 AC 634 ms
89,616 KB
testcase_05 AC 38 ms
52,572 KB
testcase_06 AC 39 ms
53,556 KB
testcase_07 AC 38 ms
53,412 KB
testcase_08 AC 648 ms
89,672 KB
testcase_09 AC 678 ms
90,064 KB
testcase_10 AC 664 ms
89,908 KB
testcase_11 AC 674 ms
90,104 KB
testcase_12 AC 678 ms
90,160 KB
testcase_13 AC 679 ms
90,028 KB
testcase_14 AC 689 ms
90,056 KB
testcase_15 AC 373 ms
80,996 KB
testcase_16 AC 626 ms
87,428 KB
testcase_17 AC 641 ms
87,736 KB
testcase_18 AC 616 ms
87,496 KB
testcase_19 AC 371 ms
81,288 KB
testcase_20 AC 610 ms
87,620 KB
testcase_21 AC 509 ms
84,680 KB
testcase_22 AC 368 ms
81,372 KB
testcase_23 AC 288 ms
79,740 KB
testcase_24 AC 640 ms
87,716 KB
testcase_25 AC 89 ms
76,828 KB
testcase_26 AC 513 ms
84,776 KB
testcase_27 AC 631 ms
87,684 KB
testcase_28 AC 38 ms
52,956 KB
testcase_29 AC 39 ms
53,264 KB
testcase_30 AC 532 ms
90,672 KB
testcase_31 AC 542 ms
89,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
se = {"U":0,"F":1,"W":2,"P":3}
s = [[] for i in range(5)]
for i in range(n):
    si,ai = input().split()
    s[se[si]].append(int(ai))

mod = 998244353
ans = 1
for i in range(4):
    cnt = 0
    tot = sum(s[i])
    for j in s[i]:
        if i != 3:
            cnt += (pow(n-1, j, mod) - pow(n-2, j, mod))*pow(n-1, tot-j, mod)
        else:
            cnt += pow(n-1, j, mod) *pow(n-1, tot-j, mod)
        cnt %= mod
    ans *= cnt
    ans %= mod
print(ans)
    
0