結果

問題 No.1908 Assault for Keys
ユーザー Eki1009Eki1009
提出日時 2022-04-22 21:02:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-06-24 01:54:01
合計ジャッジ時間 2,764 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 91 ms
76,672 KB
testcase_03 AC 84 ms
76,416 KB
testcase_04 AC 98 ms
76,288 KB
testcase_05 AC 89 ms
76,288 KB
testcase_06 AC 100 ms
76,756 KB
testcase_07 AC 89 ms
76,800 KB
testcase_08 AC 86 ms
76,576 KB
testcase_09 AC 91 ms
76,220 KB
testcase_10 AC 86 ms
76,428 KB
testcase_11 AC 98 ms
76,544 KB
testcase_12 AC 102 ms
76,288 KB
testcase_13 AC 95 ms
76,308 KB
testcase_14 AC 100 ms
76,356 KB
testcase_15 AC 89 ms
76,704 KB
testcase_16 AC 43 ms
53,376 KB
testcase_17 AC 51 ms
60,288 KB
testcase_18 AC 97 ms
76,700 KB
testcase_19 AC 81 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
S = [input() for _ in range(n)]
ans = max(sum(S[i][j]=="x" for i in range(n)) for j in range(m))+1
print(ans)
0