結果
問題 |
No.1130 Grid Numbers
|
ユーザー |
![]() |
提出日時 | 2020-11-21 14:59:49 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 480 bytes |
コンパイル時間 | 1,979 ms |
コンパイル使用メモリ | 199,100 KB |
最終ジャッジ日時 | 2025-01-16 03:59:19 |
ジャッジサーバーID (参考情報) |
judge2 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ int h,w; cin>>h>>w; map<int,int>mp; for(int i=0;i<h;i++){ for(int j=0;j<w;j++){ int a; cin>>a; mp[a]++; } } 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; }