結果

問題 No.2270 T0空間
ユーザー KazunKazun
提出日時 2023-04-14 22:13:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 312 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,716 KB
実行使用メモリ 492,828 KB
最終ジャッジ日時 2024-10-10 13:04:02
合計ジャッジ時間 9,689 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,504 KB
testcase_01 AC 36 ms
53,196 KB
testcase_02 AC 36 ms
53,416 KB
testcase_03 AC 37 ms
53,820 KB
testcase_04 AC 36 ms
52,612 KB
testcase_05 AC 37 ms
52,940 KB
testcase_06 AC 36 ms
53,816 KB
testcase_07 AC 35 ms
52,940 KB
testcase_08 AC 36 ms
52,156 KB
testcase_09 AC 35 ms
53,096 KB
testcase_10 AC 35 ms
53,184 KB
testcase_11 AC 372 ms
172,656 KB
testcase_12 AC 252 ms
135,540 KB
testcase_13 AC 1,267 ms
301,576 KB
testcase_14 AC 1,281 ms
300,916 KB
testcase_15 AC 1,236 ms
301,288 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N=int(input())
    M=int(input())

    T=[list(input()[:-1]) for _ in range(M)]
    T=["".join(list(t)) for t in zip(*T)]
    return len(set(T))==N

#==================================================
import sys
input=sys.stdin.readline
write=sys.stdout.write

print("Yes" if solve() else "No")
0