結果

問題 No.1908 Assault for Keys
ユーザー Eki1009Eki1009
提出日時 2022-04-22 21:02:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 140 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 87,320 KB
実行使用メモリ 78,116 KB
最終ジャッジ日時 2023-09-06 07:14:13
合計ジャッジ時間 3,583 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,532 KB
testcase_01 AC 68 ms
71,492 KB
testcase_02 AC 116 ms
77,860 KB
testcase_03 AC 111 ms
77,844 KB
testcase_04 AC 126 ms
77,900 KB
testcase_05 AC 119 ms
77,888 KB
testcase_06 AC 122 ms
77,816 KB
testcase_07 AC 111 ms
77,688 KB
testcase_08 AC 112 ms
77,876 KB
testcase_09 AC 113 ms
77,832 KB
testcase_10 AC 110 ms
78,116 KB
testcase_11 AC 123 ms
77,724 KB
testcase_12 AC 125 ms
77,804 KB
testcase_13 AC 119 ms
78,092 KB
testcase_14 AC 120 ms
77,924 KB
testcase_15 AC 114 ms
77,780 KB
testcase_16 AC 72 ms
71,524 KB
testcase_17 AC 78 ms
75,212 KB
testcase_18 AC 122 ms
78,036 KB
testcase_19 AC 107 ms
78,104 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