結果

問題 No.2270 T0空間
ユーザー hitonanodehitonanode
提出日時 2023-05-29 22:45:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 889 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 1,251 ms
コンパイル使用メモリ 96,248 KB
実行使用メモリ 36,096 KB
最終ジャッジ日時 2024-06-08 19:32:46
合計ジャッジ時間 8,962 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 80 ms
6,400 KB
testcase_12 AC 51 ms
5,376 KB
testcase_13 AC 212 ms
11,520 KB
testcase_14 AC 223 ms
11,520 KB
testcase_15 AC 219 ms
11,392 KB
testcase_16 AC 435 ms
19,584 KB
testcase_17 AC 868 ms
36,096 KB
testcase_18 AC 889 ms
35,968 KB
testcase_19 AC 885 ms
36,096 KB
testcase_20 AC 879 ms
36,096 KB
testcase_21 AC 874 ms
35,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <set>
#include <string>
#include <vector>
using namespace std;


int main() {
    int N, M;
    cin >> N >> M;
    vector<string> S(N, string(M, '.'));
    for (int i = 0; i < M; ++i) {
        for (auto &s : S) cin >> s.at(i);
    }
    cout << (S.size() == set<string>{S.begin(), S.end()}.size() ? "Yes" : "No") << '\n';
}
0