結果
| 問題 | No.1130 Grid Numbers |
| ユーザー |
chacoder1
|
| 提出日時 | 2020-11-21 15:19:03 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 494 bytes |
| 記録 | |
| コンパイル時間 | 1,297 ms |
| コンパイル使用メモリ | 217,480 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-15 07:54:04 |
| 合計ジャッジ時間 | 2,100 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 12 |
ソースコード
#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[i][j];
mp[D[i][j]]++;
}
}
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;
}
chacoder1