結果

問題 No.2270 T0空間
ユーザー 沙耶花沙耶花
提出日時 2023-04-14 21:44:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 4,792 ms
コンパイル使用メモリ 270,092 KB
実行使用メモリ 39,296 KB
最終ジャッジ日時 2024-10-10 12:26:13
合計ジャッジ時間 7,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 18 ms
8,704 KB
testcase_12 AC 11 ms
6,016 KB
testcase_13 AC 42 ms
14,592 KB
testcase_14 AC 43 ms
14,592 KB
testcase_15 AC 42 ms
14,592 KB
testcase_16 AC 89 ms
22,912 KB
testcase_17 AC 186 ms
39,296 KB
testcase_18 AC 185 ms
39,296 KB
testcase_19 AC 196 ms
39,296 KB
testcase_20 AC 192 ms
39,296 KB
testcase_21 AC 196 ms
39,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001


int main(){
	cin.tie(nullptr);
    ios::sync_with_stdio(false);
	int n,m;
	cin>>n>>m;
	vector<string> s(m);
	rep(i,m)cin>>s[i];
	
	vector<string> t;
	rep(i,n){
		string tt = "";
		rep(j,m)tt += s[j][i];
		t.push_back(tt);
	}
	sort(t.begin(),t.end());
	t.erase(unique(t.begin(),t.end()),t.end());
	if(t.size()==n)cout<<"Yes"<<endl;
	else cout<<"No"<<endl;
	
	return 0;
}
0