結果
問題 | No.1239 Multiplication -2 |
ユーザー | りあん |
提出日時 | 2020-09-05 10:18:16 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 731 bytes |
コンパイル時間 | 1,837 ms |
コンパイル使用メモリ | 203,080 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-05-05 20:19:01 |
合計ジャッジ時間 | 5,644 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 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 | 1 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 8 ms
5,376 KB |
testcase_16 | AC | 11 ms
5,376 KB |
testcase_17 | TLE | - |
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 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; const int M = 998244353; int main() { cin.tie(0); ios::sync_with_stdio(0); int n; cin >> n; vector<int> a(n); vector<long long> pw(n + 1); pw[0] = 1; int inv = (M + 1) / 2; for (int i = 0; i < n; ++i) { cin >> a[i]; pw[i + 1] = pw[i] * inv % M; } long long ans = 0; for (int i = 0; i < n; ++i) { int b = 1; for (int j = i; j < n; ++j) { b *= a[j]; if (b == -2) { int c = j - i + 2 - (i == 0) - (j == n - 1); ans = (ans + pw[c]) % M; } if (b == 0 || abs(b) > 2) break; } } cout << ans << '\n'; return 0; }