結果

問題 No.3261 yiwiy9 → yiwiY9
ユーザー しもりん
提出日時 2025-09-06 14:15:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 1,005 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 76,844 KB
最終ジャッジ日時 2025-09-06 14:15:19
合計ジャッジ時間 2,868 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 29
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import os


IS_LOCAL = os.environ.get("LOCAL") == "true"


def debug(*args, sep=" ", end="\n", flush=False) -> None:
    if IS_LOCAL:
        print(*args, sep=sep, end=end, file=sys.stderr, flush=flush)


def yn(flg: bool) -> bool:
    print('Yes' if flg else 'No')
    return flg


def gcd(a, b):
    a = abs(a); b = abs(b)
    if a < b: a, b = b, a
    while b > 0:
        a, b = b, a % b
    return a


def lcm(a, b):
    return a * b // gcd(a, b)


def main():
    readline = sys.stdin.readline

    H, W = map(int, readline().split())
    right_yiwiy = "yiwiy9"
    left_yiwiy = "9yiwiy"
    for _ in range(H):
        s = list(input())
        i = 0
        while i < W - 5:
            if s[i:i + 6] == list(right_yiwiy):
                s[i + 4] = 'Y'
                i += 6
            elif s[i:i + 6] == list(left_yiwiy):
                s[i + 1] = 'Y'
                i += 6
            else:
                i += 1
        print(''.join(s))


if __name__ == "__main__":
    main()
0