結果

問題 No.1908 Assault for Keys
ユーザー first_vilfirst_vil
提出日時 2022-04-22 21:03:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 130 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 76,648 KB
最終ジャッジ日時 2024-06-24 01:56:40
合計ジャッジ時間 3,465 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 96 ms
76,288 KB
testcase_03 AC 91 ms
76,032 KB
testcase_04 AC 100 ms
76,244 KB
testcase_05 AC 104 ms
76,416 KB
testcase_06 AC 102 ms
76,484 KB
testcase_07 AC 94 ms
76,500 KB
testcase_08 AC 95 ms
76,620 KB
testcase_09 AC 97 ms
76,288 KB
testcase_10 AC 93 ms
76,288 KB
testcase_11 AC 101 ms
76,416 KB
testcase_12 AC 102 ms
76,648 KB
testcase_13 AC 99 ms
76,160 KB
testcase_14 AC 105 ms
76,648 KB
testcase_15 AC 101 ms
76,416 KB
testcase_16 AC 44 ms
54,144 KB
testcase_17 AC 58 ms
60,544 KB
testcase_18 AC 99 ms
76,388 KB
testcase_19 AC 94 ms
76,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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