結果

問題 No.2270 T0空間
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2023-04-14 22:09:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 750 ms / 2,000 ms
コード長 251 bytes
コンパイル時間 1,179 ms
コンパイル使用メモリ 82,656 KB
実行使用メモリ 179,712 KB
最終ジャッジ日時 2024-10-10 12:58:16
合計ジャッジ時間 7,482 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,032 KB
testcase_01 AC 40 ms
55,504 KB
testcase_02 AC 39 ms
54,568 KB
testcase_03 AC 41 ms
55,256 KB
testcase_04 AC 40 ms
54,104 KB
testcase_05 AC 40 ms
55,568 KB
testcase_06 AC 39 ms
54,208 KB
testcase_07 AC 39 ms
54,248 KB
testcase_08 AC 40 ms
55,716 KB
testcase_09 AC 41 ms
55,104 KB
testcase_10 AC 42 ms
54,340 KB
testcase_11 AC 146 ms
91,780 KB
testcase_12 AC 104 ms
83,476 KB
testcase_13 AC 230 ms
107,716 KB
testcase_14 AC 229 ms
107,948 KB
testcase_15 AC 231 ms
107,432 KB
testcase_16 AC 379 ms
131,136 KB
testcase_17 AC 750 ms
179,196 KB
testcase_18 AC 724 ms
179,592 KB
testcase_19 AC 737 ms
179,352 KB
testcase_20 AC 734 ms
179,712 KB
testcase_21 AC 734 ms
179,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import random

M = int(input())
N = int(input())

S = [input() for i in range(N)]
s = set()

for j in range(M):
    
    col = "".join( [S[i][j] for i in range(N)] )
    s.add(col)

if len(s) != M:
    print ("No")
else:
    print ("Yes")
0