結果

問題 No.437 cwwゲーム
ユーザー ikdikd
提出日時 2016-10-28 22:54:30
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 614 bytes
コンパイル時間 642 ms
コンパイル使用メモリ 63,960 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-11-24 06:09:31
合計ジャッジ時間 34,737 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
10,496 KB
testcase_01 AC 1 ms
8,448 KB
testcase_02 AC 55 ms
9,892 KB
testcase_03 AC 1 ms
8,448 KB
testcase_04 AC 1 ms
10,016 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 541 ms
10,496 KB
testcase_14 AC 51 ms
8,448 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 52 ms
5,248 KB
testcase_18 AC 54 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 522 ms
5,248 KB
testcase_24 AC 1 ms
5,248 KB
testcase_25 AC 542 ms
5,248 KB
testcase_26 AC 547 ms
5,248 KB
testcase_27 AC 1 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 1 ms
5,248 KB
testcase_31 AC 1 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 53 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 51 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 AC 1 ms
5,248 KB
testcase_39 AC 1 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 52 ms
5,248 KB
testcase_42 AC 55 ms
5,248 KB
testcase_43 AC 53 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;

int main(){

   string N;
   cin>> N;

   vector<int> v;
   for(int i=0; i<N.size(); i++) v.push_back(i);
   int score=0;
   do{
      int s=0;
      for(int i=0; i<v.size(); i+=3){
         if(i+3>v.size()) break;
         int c=N[v[i]]-'0', w1=N[v[i+1]]-'0', w2=N[v[i+2]]-'0';
         if(c==0||c==w1||c==w2||w1!=w2) continue;
         if(!(v[i]<v[i+1]&&v[i+1]<v[i+2])) continue;
         s+=c*100+w1*10+w2;
      }
      score=max(s, score);
   }while(next_permutation(v.begin(), v.end()));

   cout<< score<< endl;

   return 0;
}
0