結果
問題 | No.623 fudan no modulus to tigau |
ユーザー | Sebastian King |
提出日時 | 2017-12-23 00:04:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 946 bytes |
コンパイル時間 | 1,412 ms |
コンパイル使用メモリ | 158,440 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-10 03:09:46 |
合計ジャッジ時間 | 1,902 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> PII; const int MM = 998244353; const double eps = 1e-8; const int MAXN = 2e6 + 10; int n, m; void prework(){ } void read(){ } ll t[MAXN], a[MAXN], b[MAXN]; ll ans[MAXN]; void gao(){ ll x; cin >> x; ans[0] = 1; ans[1] = x; for (int i = 2; i <= n; i++){ if (t[i] == 1){ ans[i] = (ans[a[i]] + ans[b[i]] ) % MM; } else if (t[i] == 2){ ans[i] = (a[i] * ans[b[i]]) % MM; } else { ans[i] = (ans[a[i]] * ans[b[i]]) % MM; } } cout << ans[n] << endl; } void solve(int casi){ // cout << "Case #" << casi << ": "; cin >> n; for (int i = 2; i <= n; i++) cin >> t[i] >> a[i] >> b[i]; cin >> m; for (int i = 1; i <= m; i++) gao(); } void printans(){ } int main(){ // std::ios::sync_with_stdio(false); prework(); int T = 1; // cin>>T; for(int i = 1; i <= T; i++){ read(); solve(i); printans(); } return 0; }