結果
問題 | No.2838 Diagonals |
ユーザー | RiRinbaru |
提出日時 | 2024-08-23 10:22:02 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,543 bytes |
コンパイル時間 | 5,494 ms |
コンパイル使用メモリ | 312,388 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-08-23 10:22:10 |
合計ジャッジ時間 | 7,268 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 46 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | AC | 10 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, p, n) for (ll i = p; i < (ll)(n); i++) #define rep2(i, p, n) for (ll i = p; i >= (ll)(n); i--) using namespace std; using ll = long long; using ld = long double; const double pi = 3.141592653589793; const long long inf = 2 * 1e9; const long long linf = 4 * 1e18; const ll mod1 = 1000000007; const ll mod2 = 998244353; template <class T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return 1; } return 0;} template <class T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return 1; } return 0; } //atcoder #include <atcoder/all> using namespace atcoder; using mint1 = modint1000000007; using mint2 = modint998244353; int main() { vector<pair<ll, ll>> base={{-1, 0}, {1, 0}, {0, -1}, {0, 1}}; ll N, M, co=0, co2=0; cin >> N >> M; vector<string> G(N); mint2 ans=1; rep(i, 0, N) { cin >> G.at(i); } rep(i, 0, N) { rep(j, 0, M) { if (G.at(i).at(j)=='#') { ans*=4; co2++; rep(k, 0, 4) { ll x=i+base.at(k).first; ll y=j+base.at(k).second; if (x>=0 && x<N && y>=0 && y<M) { if (G.at(x).at(y)=='#') { co++; } } } } } } co/=2; //cout << co << " " << co2 << endl; rep(i, 0, co+1-co2) { ans/=2; } cout << ans.val(); }