結果
| 問題 |
No.1130 Grid Numbers
|
| ユーザー |
chacoder1
|
| 提出日時 | 2020-11-21 14:51:32 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 508 bytes |
| コンパイル時間 | 10,162 ms |
| コンパイル使用メモリ | 198,292 KB |
| 最終ジャッジ日時 | 2025-01-16 03:58:32 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 7 TLE * 5 |
ソースコード
#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;
}
chacoder1