結果

問題 No.437 cwwゲーム
ユーザー srup٩(๑`н´๑)۶srup٩(๑`н´๑)۶
提出日時 2016-10-28 23:03:31
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,003 bytes
コンパイル時間 1,240 ms
コンパイル使用メモリ 161,300 KB
実行使用メモリ 17,096 KB
最終ジャッジ日時 2024-11-24 06:14:13
合計ジャッジ時間 36,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,576 KB
testcase_01 AC 2 ms
10,276 KB
testcase_02 AC 173 ms
8,576 KB
testcase_03 AC 2 ms
10,148 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 725 ms
10,496 KB
testcase_14 AC 174 ms
8,704 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 169 ms
5,248 KB
testcase_18 AC 172 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 4 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 4 ms
5,248 KB
testcase_23 AC 719 ms
5,248 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 721 ms
5,248 KB
testcase_26 AC 714 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 3 ms
5,248 KB
testcase_32 AC 1 ms
5,248 KB
testcase_33 AC 168 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 168 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 1 ms
5,248 KB
testcase_40 AC 1 ms
5,248 KB
testcase_41 AC 171 ms
5,248 KB
testcase_42 AC 171 ms
5,248 KB
testcase_43 AC 168 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vint;
typedef pair<int,int> pint;
typedef vector<pint> vpint;
#define rep(i,n) for(int i=0;i<(n);i++)
#define reps(i,f,n) for(int i=(f);i<(n);i++)
#define all(v) (v).begin(),(v).end()
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define chmax(a, b) a = (((a)<(b)) ? (b) : (a))
#define chmin(a, b) a = (((a)>(b)) ? (b) : (a))
const int MOD = 1e9 + 7;
const int INF = 1e9;

int main(void){
	string s; cin >> s;
	int k = s.size();
	int ret = 0;
	//5進数bit全探索
	for (int mask = 0; mask < pow(4, k); ++mask){
		int ans = 0;

		int tmask = mask;
		int bit[15];
		rep(pos, k){
			bit[pos] = tmask % 4;
			tmask /= 4;
		}
		rep(i, 4){
			string tm = "";
			rep(j, k){
				if(bit[j] == i) tm += s[j];
			}
			
			if(tm.size() == 3){
				if(tm[0] != '0' && tm[1] == tm[2] && tm[0] != tm[1]){
					ans += stoi(tm);
				}
			}
		}
		chmax(ret, ans);
	}
	printf("%d\n", ret);
	return 0;
}
0