結果

問題 No.2784 繰り上がりなし十進和
ユーザー shobonvipshobonvip
提出日時 2024-06-14 21:42:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 928 ms / 2,000 ms
コード長 1,537 bytes
コンパイル時間 3,645 ms
コンパイル使用メモリ 237,780 KB
実行使用メモリ 8,780 KB
最終ジャッジ日時 2024-06-14 21:43:12
合計ジャッジ時間 15,992 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 875 ms
8,136 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 928 ms
8,008 KB
testcase_13 AC 927 ms
8,136 KB
testcase_14 AC 223 ms
6,944 KB
testcase_15 AC 47 ms
6,940 KB
testcase_16 AC 99 ms
6,940 KB
testcase_17 AC 441 ms
6,940 KB
testcase_18 AC 459 ms
6,940 KB
testcase_19 AC 113 ms
6,944 KB
testcase_20 AC 904 ms
7,760 KB
testcase_21 AC 91 ms
6,940 KB
testcase_22 AC 901 ms
7,884 KB
testcase_23 AC 38 ms
6,944 KB
testcase_24 AC 179 ms
6,944 KB
testcase_25 AC 451 ms
6,944 KB
testcase_26 AC 906 ms
8,144 KB
testcase_27 AC 901 ms
8,268 KB
testcase_28 AC 223 ms
6,940 KB
testcase_29 AC 905 ms
8,780 KB
testcase_30 AC 221 ms
6,940 KB
testcase_31 AC 91 ms
6,944 KB
testcase_32 AC 441 ms
6,944 KB
testcase_33 AC 486 ms
6,944 KB
testcase_34 AC 178 ms
6,940 KB
testcase_35 AC 47 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/convolution>
#include<atcoder/modint>
typedef atcoder::modint998244353 mint;
typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int op(int a, int b){
	int ret = 0;
	vector<int> c;
	rep(i,0,6){
		c.push_back((a+b) % 10);
		a /= 10;
		b /= 10;
	}
	rrep(i,0,6){
		ret = ret * 10 + c[i];
	}
	return ret;
}

int main(){
	vector<int> a(6);
	rep(i,0,6){
		cin >> a[i];
	}

	vector<bool> v(1000000);
	vector<int> mada;
	rep(i,0,6){
		if (v[a[i]]) continue;
		v[a[i]] = 1;
		mada.push_back(a[i]);
	}

	while(!mada.empty()){
		int x = mada.back();
		mada.pop_back();
		rep(i,0,6){
			int y = op(x, a[i]);
			if (v[y]) continue;
			v[y] = 1;
			mada.push_back(y);
		}
	}	

	int ans = 0;
	rep(i,0,1000000){
		if (v[i]) ans++;
	}

	cout << ans<<'\n';
}

0