結果

問題 No.3707 Unique Ticket
コンテスト
ユーザー 👑 cologne
提出日時 2026-09-14 11:41:24
言語 PyPy3
(7.3.23 + ACL)
コンパイル:
pypy3 -mpy_compile _filename_
実行:
pypy3 _filename_
結果
AC  
実行時間 53 ms / 2,000 ms
+ 273µs
コード長 1,000 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 72 ms
コンパイル使用メモリ 81,408 KB
実行使用メモリ 73,728 KB
最終ジャッジ日時 2026-09-14 11:41:29
合計ジャッジ時間 4,687 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 45
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import sys
from typing import List, Tuple

int1 = lambda x: int(x) - 1
input = lambda: sys.stdin.readline().rstrip('\n')
ii = lambda: int(input())
vi = lambda: list(map(int, input().split()))
vi1 = lambda: list(map(int1, input().split()))


def dbg(*args, **kwargs):
    print(*(repr(arg) for arg in args), *(f'{k}: {repr(v)}' for k, v in kwargs.items()),
          sep='; ', file=sys.stderr, flush=True)


def main():
    n, m = vi()
    cnt = [0] * m
    s = [input() for _ in range(n)]
    for c in s:
        for i in range(m):
            cnt[i] += c[i] == 'o'

    ans = 0
    for c in s:
        ok = True
        ok2 = False
        for i in range(m):
            if c[i] == 'o':
                ok2 = True
                if cnt[i] != 1:
                    ok = False
        ans += ok and ok2
    return ans


def _start():
    if (ret := main()) is not None:
        print(*ret) if isinstance(ret, List) or isinstance(ret, Tuple) else print(ret)


if __name__ == '__main__':
    _start()
0