結果

問題 No.2784 繰り上がりなし十進和
ユーザー haihamabossuhaihamabossu
提出日時 2024-06-14 23:02:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 771 bytes
コンパイル時間 2,434 ms
コンパイル使用メモリ 205,924 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-14 23:02:42
合計ジャッジ時間 3,838 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 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 2 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
5,376 KB
testcase_21 WA -
testcase_22 AC 2 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 WA -
testcase_29 AC 2 ms
5,376 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 2 ms
5,376 KB
testcase_34 WA -
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)

void solve() {
  vector a(6, vector<ll>(6));
  rep(i, 6) {
    string s;
    cin >> s;
    rep(j, 6) a[i][j] = s[j] - '0';
  }
  ll ans = 1;
  rep(j, 6) {
    bool ok = false, ff = false, ef = false;
    rep(i, 6) {
      ok |= a[i][j] != 5 && a[i][j] % 2 == 1;
      ff |= a[i][j] == 5;
      ef |= a[i][j] != 0 && a[i][j] % 2 == 0;
    }
    if (ok || (ff && ef)) {
      ans *= 10;
    } else if (ff) {
      ans *= 2;
    } else if (ef) {
      ans *= 5;
    }
  }
  cout << ans << '\n';
}

int main() {
  std::cin.tie(nullptr);
  std::ios_base::sync_with_stdio(false);
  int T = 1;
  for (int t = 0; t < T; t++) {
    solve();
  }
  return 0;
}
0