結果

問題 No.1908 Assault for Keys
ユーザー prussian_coderprussian_coder
提出日時 2022-04-22 22:22:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 141 bytes
コンパイル時間 702 ms
コンパイル使用メモリ 86,788 KB
実行使用メモリ 77,812 KB
最終ジャッジ日時 2023-09-06 08:56:23
合計ジャッジ時間 3,954 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
71,428 KB
testcase_01 AC 75 ms
71,096 KB
testcase_02 AC 120 ms
77,664 KB
testcase_03 AC 117 ms
77,584 KB
testcase_04 AC 119 ms
77,588 KB
testcase_05 AC 120 ms
77,516 KB
testcase_06 AC 123 ms
77,632 KB
testcase_07 AC 118 ms
77,644 KB
testcase_08 AC 116 ms
77,508 KB
testcase_09 AC 119 ms
77,744 KB
testcase_10 AC 116 ms
77,356 KB
testcase_11 AC 123 ms
77,568 KB
testcase_12 AC 120 ms
77,616 KB
testcase_13 AC 120 ms
77,604 KB
testcase_14 AC 122 ms
77,508 KB
testcase_15 AC 119 ms
77,492 KB
testcase_16 AC 78 ms
71,332 KB
testcase_17 AC 85 ms
75,552 KB
testcase_18 AC 121 ms
77,812 KB
testcase_19 AC 113 ms
77,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
S=[input() for _ in range(H)]
a=0
for j in range(W):
	a=max(a,sum([S[i][j]=="x" for i in range(H)]))
print(a+1)	
0