結果

問題 No.2784 繰り上がりなし十進和
ユーザー たたき@競プロたたき@競プロ
提出日時 2024-06-22 14:26:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,200 ms / 2,000 ms
コード長 989 bytes
コンパイル時間 5,877 ms
コンパイル使用メモリ 315,196 KB
実行使用メモリ 81,792 KB
最終ジャッジ日時 2024-06-22 14:26:51
合計ジャッジ時間 30,554 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 346 ms
6,816 KB
testcase_01 AC 380 ms
6,940 KB
testcase_02 AC 817 ms
81,536 KB
testcase_03 AC 347 ms
6,944 KB
testcase_04 AC 381 ms
6,944 KB
testcase_05 AC 375 ms
6,940 KB
testcase_06 AC 359 ms
6,940 KB
testcase_07 AC 419 ms
6,940 KB
testcase_08 AC 453 ms
6,944 KB
testcase_09 AC 458 ms
6,940 KB
testcase_10 AC 481 ms
6,944 KB
testcase_11 AC 459 ms
6,944 KB
testcase_12 AC 860 ms
81,664 KB
testcase_13 AC 864 ms
81,536 KB
testcase_14 AC 578 ms
23,168 KB
testcase_15 AC 491 ms
7,552 KB
testcase_16 AC 646 ms
11,264 KB
testcase_17 AC 909 ms
42,496 KB
testcase_18 AC 763 ms
42,496 KB
testcase_19 AC 583 ms
13,312 KB
testcase_20 AC 1,200 ms
81,664 KB
testcase_21 AC 624 ms
11,264 KB
testcase_22 AC 1,073 ms
81,664 KB
testcase_23 AC 584 ms
6,940 KB
testcase_24 AC 723 ms
19,072 KB
testcase_25 AC 922 ms
42,624 KB
testcase_26 AC 886 ms
81,536 KB
testcase_27 AC 1,025 ms
81,536 KB
testcase_28 AC 762 ms
23,168 KB
testcase_29 AC 1,029 ms
81,792 KB
testcase_30 AC 737 ms
23,168 KB
testcase_31 AC 621 ms
11,264 KB
testcase_32 AC 872 ms
42,624 KB
testcase_33 AC 850 ms
42,624 KB
testcase_34 AC 698 ms
19,072 KB
testcase_35 AC 572 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int t=6;
  auto f=[&](sr a,sr b)->sr{
    sr res=a;
    rep(i,t){
      int xa=a[i]-'0';
      int xb=b[i]-'0';
      xa=(xa+xb)%10;
      res[i]='0'+xa;
    }
    return res;
  };
  auto ff=[&](sr a,int x)->sr{
    rep(i,t){
      int d=a[i]-'0';
      d*=x;
      d%=10;
      a[i]='0'+d;
    }
    return a;
  };
  set<sr>s;
  vc<sr>v(t); rep(i,t)cin>>v[i];
  rep(i,1000000){
    auto ni=i;
    sr now=sr(t,'0');
    rep(j,t){
      int a=ni%10;
      now=f(now,ff(v[j],a));
      ni/=10;
    }
    s.insert(now);
  }
  int ans=s.size();
  cout<<ans;
      
}
0