結果

問題 No.3657 Gathering Stones
コンテスト
ユーザー MM
提出日時 2026-08-30 13:48:43
言語 C++23(gcc16)
(gcc 16.1.0 + boost 1.92.0)
コンパイル:
g++-16 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 950µs
コード長 994 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 5,839 ms
コンパイル使用メモリ 391,756 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2026-08-30 13:49:01
合計ジャッジ時間 6,690 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 57
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<bits/stdc++.h>
#include<atcoder/all>
#define chmin(x,y) (x) = min((x),(y))
#define chmax(x,y) (x) = max((x),(y))
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define vec vector
#define all(a) a.begin(), a.end()
#define rall(a) a.rbegin(), a.rend()
#define pb push_back 
#define eb emplace_back

using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
const ll mod = 998244353;
using mint = modint998244353;
const vector<int> dx = {1,0,-1,0}, dy = {0,1,0,-1};
// using Graph = vector<vector<pair<int,ll>>>;
using Graph = vector<vector<int>>;

int main(){
  // input + prep
  int N,M;
  cin >> N >> M;
  vector<string> S(N), sort1(M);
  rep(i,N){
    cin >> S[i];
    rep(j,M) sort1[j] += S[i][j];
  }
  
  // solve
  vector<string> sort2(N);
  rep(j,M){
    sort(all(sort1[j]));
    assert(sort1[j].size() == N);
    rep(i,N) sort2[i] += sort1[j][i];
  }
  
  // output
  rep(i,N){
    sort(all(sort2[i]));
    cout << sort2[i] << endl;
  }
}
0