結果

問題 No.1345 Beautiful BINGO
ユーザー KoD
提出日時 2021-01-15 21:04:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 231 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-26 12:41:09
合計ジャッジ時間 3,791 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 2
other WA * 61
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())

assert(2 <= N and N <= 16)
assert(1 <= M and M <= 2 * N + 2)

for _ in range(N):
    A = list(map(int, input().split()))
    assert(len(A) == N)
    for x in A:
        assert(1 <= x and x <= 100)
0