結果

問題 No.2784 繰り上がりなし十進和
ユーザー tanaka255tanaka255
提出日時 2024-06-14 22:29:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 586 ms / 2,000 ms
コード長 888 bytes
コンパイル時間 2,104 ms
コンパイル使用メモリ 209,508 KB
実行使用メモリ 50,432 KB
最終ジャッジ日時 2024-06-14 22:29:33
合計ジャッジ時間 11,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
6,816 KB
testcase_01 AC 82 ms
6,940 KB
testcase_02 AC 365 ms
50,176 KB
testcase_03 AC 77 ms
6,944 KB
testcase_04 AC 77 ms
6,944 KB
testcase_05 AC 81 ms
6,944 KB
testcase_06 AC 77 ms
6,944 KB
testcase_07 AC 80 ms
6,944 KB
testcase_08 AC 100 ms
6,944 KB
testcase_09 AC 97 ms
6,944 KB
testcase_10 AC 98 ms
6,940 KB
testcase_11 AC 99 ms
6,944 KB
testcase_12 AC 342 ms
50,176 KB
testcase_13 AC 320 ms
50,304 KB
testcase_14 AC 176 ms
15,232 KB
testcase_15 AC 132 ms
6,948 KB
testcase_16 AC 197 ms
8,064 KB
testcase_17 AC 352 ms
26,880 KB
testcase_18 AC 275 ms
26,880 KB
testcase_19 AC 163 ms
9,344 KB
testcase_20 AC 586 ms
50,304 KB
testcase_21 AC 189 ms
8,064 KB
testcase_22 AC 447 ms
50,304 KB
testcase_23 AC 173 ms
6,940 KB
testcase_24 AC 255 ms
12,672 KB
testcase_25 AC 379 ms
26,880 KB
testcase_26 AC 387 ms
50,432 KB
testcase_27 AC 495 ms
50,304 KB
testcase_28 AC 253 ms
15,104 KB
testcase_29 AC 446 ms
50,304 KB
testcase_30 AC 244 ms
15,232 KB
testcase_31 AC 221 ms
8,192 KB
testcase_32 AC 309 ms
26,752 KB
testcase_33 AC 277 ms
26,752 KB
testcase_34 AC 244 ms
12,672 KB
testcase_35 AC 167 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
template<typename T>
bool chmax(T &a, T b) {
  if (a < b) {
    a = b;
    return true;
  }
  return false;
}
template<typename T>
bool chmin(T &a, T b) {
  if (a > b) {
    a = b;
    return true;
  }
  return false;
}
void solve();
int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  cout << fixed << setprecision(20);
  int t = 1;
  //cin >> t;
  while (t--) {
    solve();
  }
}
vector<string>A(6);
int d[6][6];
set<int>st;
void solve() {
  rep(i,6)cin>>A[i];
  rep(i,6)rep(j,6)d[i][j]=A[i][j]-'0';
  rep(i,1000000){
    vector<int>sum(6);
    int S=i;
    rep(j,6){
      int cnt=S%10;
      S/=10;
      rep(k,6)sum[k]+=d[j][k]*cnt;
    }
    rep(k,6)sum[k]%=10;
    int v=0;
    rep(k,6)v=10*v+sum[k]%10;
    st.insert(v);
  }
  cout<<st.size()<<endl;
}
0