結果

問題 No.623 fudan no modulus to tigau
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-08-01 23:47:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 955 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 63,104 KB
最終ジャッジ日時 2024-10-11 19:24:55
合計ジャッジ時間 2,566 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
62,336 KB
testcase_01 AC 53 ms
62,336 KB
testcase_02 AC 52 ms
62,336 KB
testcase_03 AC 51 ms
62,080 KB
testcase_04 AC 50 ms
61,776 KB
testcase_05 AC 50 ms
61,440 KB
testcase_06 AC 48 ms
61,696 KB
testcase_07 AC 52 ms
62,208 KB
testcase_08 AC 55 ms
63,104 KB
testcase_09 AC 54 ms
62,336 KB
testcase_10 AC 54 ms
63,104 KB
testcase_11 AC 55 ms
62,976 KB
testcase_12 AC 47 ms
55,680 KB
testcase_13 AC 47 ms
55,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

mod = 998244353
n = int(input())
op = [tuple(map(int,input().split())) for _ in range(n-1)]
def f(q):
    val = [0]*(n+1)
    val[0] = 1
    val[1] = q
    idx = 2
    for t,a,b in op:
        if t==1:
            val[idx] = val[a]+val[b]
            val[idx] %= mod
        elif t==2:
            val[idx] = a*val[b]
            val[idx] %= mod
        else:
            val[idx] = val[a]*val[b]
            val[idx] %= mod
        idx += 1
    return val[-1]

q = int(input())
X = list(map(int,input().split()))
for x in X:
    print(f(x))
0