結果

問題 No.205 マージして辞書順最小
ユーザー kuisibakuisiba
提出日時 2016-11-01 09:41:14
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 516 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 61,376 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-03 20:35:02
合計ジャッジ時間 1,320 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
6,944 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdint>
#include <string>
#include <vector>

using namespace std;

int main() {

  ios::sync_with_stdio(false);
  cin.tie(0);

  int n;
  cin >> n;
  vector<int> v(26);
  string s;
  for (int i = 0; i < n; i++) {
    cin >> s;
    for (size_t j = 0; j < s.size(); j++) {
      v.at(s.at(j) - 97)++;
    }
  }
  string ans;
  for (size_t i = 0; i < v.size(); i++) {
    int m = v.at(i);
    for (int j = 0; j < m; j++) {
      ans += (char)(i + 97);
    }
  }
  cout << ans << endl;
}

0