結果

問題 No.923 オセロきりきざむたん
ユーザー pluto77pluto77
提出日時 2020-03-24 12:49:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 279 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-06-10 05:48:22
合計ジャッジ時間 7,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 26 ms
10,880 KB
testcase_13 AC 25 ms
10,624 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 27 ms
10,880 KB
testcase_20 AC 27 ms
10,752 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 27 ms
10,624 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 26 ms
10,752 KB
testcase_25 AC 28 ms
10,624 KB
testcase_26 AC 49 ms
11,648 KB
testcase_27 AC 42 ms
11,520 KB
testcase_28 WA -
testcase_29 AC 43 ms
11,776 KB
testcase_30 AC 34 ms
11,264 KB
testcase_31 AC 39 ms
11,392 KB
testcase_32 AC 27 ms
10,752 KB
testcase_33 AC 27 ms
10,880 KB
testcase_34 AC 25 ms
10,880 KB
testcase_35 AC 26 ms
10,752 KB
testcase_36 AC 26 ms
10,752 KB
testcase_37 AC 25 ms
10,752 KB
testcase_38 AC 26 ms
10,752 KB
testcase_39 AC 26 ms
10,752 KB
testcase_40 AC 26 ms
10,752 KB
testcase_41 AC 28 ms
10,880 KB
testcase_42 AC 28 ms
10,752 KB
testcase_43 AC 27 ms
10,752 KB
testcase_44 AC 27 ms
10,752 KB
testcase_45 WA -
testcase_46 AC 27 ms
10,752 KB
testcase_47 AC 29 ms
10,752 KB
testcase_48 AC 26 ms
10,752 KB
testcase_49 AC 29 ms
10,752 KB
testcase_50 AC 77 ms
12,544 KB
testcase_51 AC 77 ms
12,544 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 81 ms
12,928 KB
testcase_55 AC 95 ms
13,312 KB
testcase_56 WA -
testcase_57 AC 28 ms
10,880 KB
testcase_58 AC 28 ms
10,752 KB
testcase_59 AC 27 ms
10,752 KB
testcase_60 AC 27 ms
10,752 KB
testcase_61 WA -
testcase_62 AC 30 ms
11,008 KB
testcase_63 AC 28 ms
10,752 KB
testcase_64 AC 27 ms
10,752 KB
testcase_65 AC 296 ms
20,992 KB
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 AC 45 ms
11,648 KB
testcase_70 AC 42 ms
11,776 KB
testcase_71 WA -
testcase_72 AC 43 ms
11,776 KB
testcase_73 AC 27 ms
10,752 KB
testcase_74 AC 33 ms
11,136 KB
testcase_75 AC 40 ms
11,392 KB
testcase_76 AC 34 ms
11,008 KB
testcase_77 AC 43 ms
11,520 KB
testcase_78 AC 30 ms
10,880 KB
testcase_79 AC 45 ms
11,392 KB
testcase_80 AC 45 ms
11,520 KB
testcase_81 AC 43 ms
11,264 KB
testcase_82 AC 54 ms
11,648 KB
testcase_83 AC 36 ms
11,136 KB
testcase_84 AC 45 ms
11,648 KB
testcase_85 AC 44 ms
11,392 KB
testcase_86 AC 39 ms
11,264 KB
testcase_87 AC 41 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
a=[]
for i in range(H):
 a.append(list(map(int,input().rstrip())))
if all(len(set(l))==2 for l in a):
 print('YES')
 exit()
for x in range(W):
 v=[0,0]
 for y in range(H):
  v[a[y][x]]=1
  if v[0]==0 or v[1]==0:
   print('NO')
   exit()
print('YES')
0