結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
6,940 KB
testcase_08 WA -
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2 ms
6,940 KB
testcase_21 WA -
testcase_22 AC 2 ms
6,944 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 WA -
testcase_29 AC 2 ms
6,944 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 2 ms
6,944 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<vector<ll>> a;
  {
    set<string> st;
    rep(i, 6) {
      string s;
      cin >> s;
      st.insert(s);
    }
    vector<string> vec(st.begin(), st.end());
    set<string> st2;
    rep(j, 6) {
      string s = ""s;
      rep(i, vec.size()) { s.push_back(vec[i][j]); }
      st2.insert(s);
    }
    vector<string> vec2(st2.begin(), st2.end());
    a.resize(vec.size());
    rep(i, vec.size()) {
      rep(j, vec2.size()) { a[i].push_back(vec2[j][i] - '0'); }
    }
  }
  ll ans = 1;
  rep(j, a[0].size()) {
    bool ok = false, ff = false, ef = false;
    rep(i, a.size()) {
      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