結果
| 問題 | No.3657 Gathering Stones |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-08-30 13:55:35 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| + 507µs | |
| コード長 | 745 bytes |
| 記録 | |
| コンパイル時間 | 2,028 ms |
| コンパイル使用メモリ | 334,496 KB |
| 実行使用メモリ | 6,272 KB |
| 最終ジャッジ日時 | 2026-08-30 13:56:04 |
| 合計ジャッジ時間 | 4,647 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 57 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template<class T> istream& operator >> (istream& is, vector<T>& vec) {
for(T& x : vec) is >> x;
return is;
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
int h, w;
cin >> h >> w;
vector<string> A(h);
cin >> A;
vector<int> Xc(w), Yc(h);
for(int y = 0; y < h; y++){
for(int x = 0; x < w; x++){
Xc[x] += A[y][x] == '#';
}
}
for(int y = 0; y < h; y++){
for(int x = 0; x < w; x++){
Yc[y] += Xc[x] >= y + 1;
}
}
for(int y = 0; y < h; y++){
for(int x = 0; x < w; x++){
cout << (x < Yc[y] ? '#' : '.');
}
cout << '\n';
}
}