結果
問題 |
No.1130 Grid Numbers
|
ユーザー |
![]() |
提出日時 | 2020-07-29 20:35:00 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 530 bytes |
コンパイル時間 | 1,107 ms |
コンパイル使用メモリ | 102,596 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 03:24:36 |
合計ジャッジ時間 | 1,699 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 |
ソースコード
#pragma GCC optimize("Ofast") #include<iostream> #include<stdio.h> #include<algorithm> #include<vector> #include<string.h> #include<math.h> #include<map> #include<iomanip> #include<queue> using namespace std; int main(){ int h,w; cin >> h >> w; vector<int> a; for(int i=0;i<h;i++){ for(int j=0;j<w;j++){ int now; cin >> now; a.push_back(now); } } sort(a.begin(),a.end()); int id=0; for(int i=0;i<h;i++){ for(int j=0;j<w;j++){ cout << a[id] << " "; id++; } cout << endl; } return 0; }