結果

問題 No.1130 Grid Numbers
ユーザー chacoder1chacoder1
提出日時 2020-11-21 14:51:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 508 bytes
コンパイル時間 2,189 ms
コンパイル使用メモリ 208,584 KB
実行使用メモリ 434,488 KB
最終ジャッジ日時 2024-07-23 15:39:06
合計ジャッジ時間 8,609 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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;
  }
  cout<<endl;
    return 0;
}
0