結果

問題 No.2784 繰り上がりなし十進和
ユーザー shkiiii_shkiiii_
提出日時 2024-06-14 22:38:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 583 ms / 2,000 ms
コード長 1,725 bytes
コンパイル時間 2,388 ms
コンパイル使用メモリ 208,900 KB
実行使用メモリ 50,432 KB
最終ジャッジ日時 2024-06-14 22:39:11
合計ジャッジ時間 12,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
6,812 KB
testcase_01 AC 68 ms
6,940 KB
testcase_02 AC 378 ms
50,304 KB
testcase_03 AC 57 ms
6,944 KB
testcase_04 AC 59 ms
6,944 KB
testcase_05 AC 63 ms
6,944 KB
testcase_06 AC 59 ms
6,944 KB
testcase_07 AC 64 ms
6,940 KB
testcase_08 AC 81 ms
6,940 KB
testcase_09 AC 72 ms
6,940 KB
testcase_10 AC 69 ms
6,944 KB
testcase_11 AC 88 ms
6,940 KB
testcase_12 AC 215 ms
50,432 KB
testcase_13 AC 244 ms
50,176 KB
testcase_14 AC 136 ms
15,232 KB
testcase_15 AC 105 ms
6,944 KB
testcase_16 AC 205 ms
8,192 KB
testcase_17 AC 420 ms
26,880 KB
testcase_18 AC 299 ms
26,752 KB
testcase_19 AC 194 ms
9,344 KB
testcase_20 AC 460 ms
50,304 KB
testcase_21 AC 192 ms
8,064 KB
testcase_22 AC 457 ms
50,304 KB
testcase_23 AC 148 ms
6,940 KB
testcase_24 AC 215 ms
12,672 KB
testcase_25 AC 473 ms
26,880 KB
testcase_26 AC 447 ms
50,176 KB
testcase_27 AC 546 ms
50,304 KB
testcase_28 AC 268 ms
15,104 KB
testcase_29 AC 583 ms
50,176 KB
testcase_30 AC 227 ms
15,232 KB
testcase_31 AC 176 ms
8,064 KB
testcase_32 AC 382 ms
26,752 KB
testcase_33 AC 324 ms
26,752 KB
testcase_34 AC 236 ms
12,672 KB
testcase_35 AC 159 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
// #include<atcoder/all>
// #include<boost/multiprecision/cpp_int.hpp>

using namespace std;
// using namespace atcoder;
// using bint = boost::multiprecision::cpp_int;
using ll = long long;
using ull = unsigned long long;
using P = pair<ll,ll>;
using vi = vector<ll>;
using vvi = vector<vi>;
using vvvi = vector<vvi>;
#define rep(i,n) for(ll i = 0;i < (ll)n;i++)
#define ALL(x) (x).begin(),(x).end()
#define sz(c) ((ll)(c).size())
#define LB(A,x) (int)(lower_bound(A.begin(),A.end(),x)-A.begin())
#define UB(A,x) (int)(upper_bound(A.begin(),A.end(),x)-A.begin())
// #define MOD 1000000007
#define MOD 998244353
template<typename T>using min_priority_queue=priority_queue<T,vector<T>,greater<T>>;
template<typename T>ostream&operator<<(ostream&os,vector<T>&v){for(int i = 0;i < v.size();i++)os<<v[i]<<(i+1!=v.size()?" ":"");return os;}
template<typename T>istream&operator>>(istream&is,vector<T>&v){for(T&in:v)is>>in;return is;}
template<typename T1,typename T2>ostream&operator<<(ostream&os,pair<T1,T2>&p){os<<p.first<<" "<<p.second;return os;}
template<typename T1,typename T2>istream&operator>>(istream&is,pair<T1,T2>&p){is>>p.first>>p.second;return is;}


int main(){
  
  ios_base::sync_with_stdio(0), cin.tie(0);
  vector<string> a(6);
  cin >> a;
  set<ll> st;
  auto dfs = [&](auto &dfs,string &s,int d,bool is)->void{
    if(d == 6){
      st.insert(stoi(s));
      return ;
    }
    rep(i,10){
      string t = string(6,'0');
      rep(j,6){
        int k = s[j]-'0';
        k += i*(a[d][j]-'0');
        k %= 10;
        t[j] = char('0'+k);
      }
      dfs(dfs,t,d+1,is|(i != 0));
    }
  };
  string s = string(6,'0');
  dfs(dfs,s,0,false);
  cout << sz(st) << "\n";

  

  return 0;
}
0