結果
問題 | No.623 fudan no modulus to tigau |
ユーザー | maspy |
提出日時 | 2020-01-06 23:53:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 548 bytes |
コンパイル時間 | 248 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 44,728 KB |
最終ジャッジ日時 | 2024-05-02 11:07:26 |
合計ジャッジ時間 | 9,052 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 533 ms
44,592 KB |
testcase_13 | WA | - |
ソースコード
import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines import numpy as np N = int(readline()) data = list(map(int,read().split())) TAB = data[:N+N+N-3] X = np.array(data[N+N+N-2:]) MOD = 998244353 F = [None] * (N+1) F[0] = np.ones_like(X) F[1] = X.copy() for n in range(2,N+1): t,a,b = data[3*n-6:3*n-3] if t == 1: F[n] = (F[a] + F[b]) % MOD elif t == 2: F[n] = a * F[b] % MOD else: F[n] = F[a] * F[b] % MOD print(' '.join(F[N].astype(str)))