結果

問題 No.2784 繰り上がりなし十進和
ユーザー 沙耶花沙耶花
提出日時 2024-06-14 21:57:24
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 4,040 ms
コンパイル使用メモリ 263,700 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-14 21:57:31
合計ジャッジ時間 6,205 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
6,816 KB
testcase_01 AC 27 ms
6,940 KB
testcase_02 AC 60 ms
6,944 KB
testcase_03 AC 28 ms
6,940 KB
testcase_04 AC 27 ms
6,940 KB
testcase_05 AC 26 ms
6,948 KB
testcase_06 AC 26 ms
6,944 KB
testcase_07 AC 26 ms
6,940 KB
testcase_08 AC 26 ms
6,940 KB
testcase_09 AC 28 ms
6,944 KB
testcase_10 AC 27 ms
6,944 KB
testcase_11 AC 27 ms
6,940 KB
testcase_12 AC 62 ms
6,940 KB
testcase_13 AC 62 ms
6,944 KB
testcase_14 AC 43 ms
6,948 KB
testcase_15 AC 31 ms
6,940 KB
testcase_16 AC 36 ms
6,944 KB
testcase_17 AC 59 ms
6,940 KB
testcase_18 AC 58 ms
6,940 KB
testcase_19 AC 36 ms
6,944 KB
testcase_20 AC 64 ms
6,940 KB
testcase_21 AC 37 ms
6,940 KB
testcase_22 AC 63 ms
6,944 KB
testcase_23 AC 34 ms
6,940 KB
testcase_24 AC 47 ms
6,944 KB
testcase_25 AC 58 ms
6,944 KB
testcase_26 AC 60 ms
6,940 KB
testcase_27 AC 63 ms
6,944 KB
testcase_28 AC 42 ms
6,944 KB
testcase_29 AC 62 ms
6,944 KB
testcase_30 AC 44 ms
6,940 KB
testcase_31 AC 38 ms
6,944 KB
testcase_32 AC 47 ms
6,944 KB
testcase_33 AC 46 ms
6,940 KB
testcase_34 AC 46 ms
6,940 KB
testcase_35 AC 34 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001
int get(int a,int b){
	int ret = 0;
	int cur = 1;
	rep(i,6){
		int x = (a%10) + (b%10);
		a/=10,b/=10;
		ret += (x%10)*cur;
		cur *= 10;
	}
	return ret;
	
}

int main(){
	
	vector<bool> dp(1000000,false);
	dp[0] = true;
	rep(i,6){
		int n;
		cin>>n;
		int c = 0;
		rep(j,4){
			c = get(c,n);
			vector<bool> ndp = dp;
			rep(k,1000000){
				if(dp[k]){
					ndp[get(k,c)] = true;
				}
			}
			swap(dp,ndp);
		}
		
	}
	int ans = 0;
	rep(i,1000000){
		if(dp[i]) ans++;
	}cout<<ans<<endl;
	return 0;
}
0