結果

問題 No.1130 Grid Numbers
ユーザー chacoder1
提出日時 2020-11-21 14:48:28
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 494 bytes
コンパイル時間 7,227 ms
コンパイル使用メモリ 259,460 KB
最終ジャッジ日時 2025-01-16 03:57:53
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 10 WA * 1 TLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  int h,w;
  cin>>h>>w;
  int D[h][w];
  map<int,int>mp;
  for(int i=0;i<h;i++){
    for(int j=0;j<w;j++){
      cin>>D[h][w];
      mp[D[h][w]]++;
    }
  }
  int temp=0;
  for(int i=0;i<h;i++){
    for(int j=0;j<w;j++){
      while(1){
        if(mp[temp]>0){
          if(j !=0 ) cout<<" ";
          cout<<temp;
          mp[temp]--;
          break;
        }
        temp++;    
      }
    }
    cout<<endl;
  }
    return 0;
}
0