結果

問題 No.232 めぐるはめぐる (2)
コンテスト
ユーザー norioc
提出日時 2025-11-24 09:22:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 1,000 ms
コード長 485 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,604 KB
実行使用メモリ 88,032 KB
最終ジャッジ日時 2025-11-24 09:22:35
合計ジャッジ時間 3,452 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

def f(t, x, lr):
    assert t >= x
    d, m = divmod(t-x, 2)
    res = []
    res.append(' ' * m)
    res.append(lr[0] * (x + d))
    res.append(lr[1] * d)

    return ''.join(res)


T, A, B = map(int, input().split())

if T < A or T < B:
    print('NO')
    exit(0)

s = f(T, A, '^v')
t = reversed(f(T, B, '><'))

ans = []
for a, b in zip(s, t):
    if a == b == ' ':
        print('NO')
        break

    ans.append((a + b).strip())
else:
    print('YES')
    print(*ans, sep='\n')
0