結果

問題 No.83 最大マッチング
ユーザー 0w10w1
提出日時 2016-11-20 01:42:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 355 bytes
コンパイル時間 1,393 ms
コンパイル使用メモリ 164,876 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-05-05 10:27:30
合計ジャッジ時間 7,813 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int cost[] = { 6, 2, 5, 5, 4, 5, 6, 3, 7, 6 };

signed main(){
  int N; cin >> N;
  int maxlen = N / 2;
  while( N >= 2 ){
    for( int i = 9; i >= 0; --i )
      if( N >= cost[ i ] and maxlen - 1 == ( N - cost[ i ] ) / 2 ){
        cout << i;
        N -= cost[ i ];
        break;
      }
  }
  return 0;
}
0