結果
問題 |
No.1130 Grid Numbers
|
ユーザー |
![]() |
提出日時 | 2020-11-21 15:19:03 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 5 ms / 2,000 ms |
コード長 | 494 bytes |
コンパイル時間 | 3,489 ms |
コンパイル使用メモリ | 200,080 KB |
最終ジャッジ日時 | 2025-01-16 04:00:08 |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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; }