結果

問題 No.232 めぐるはめぐる (2)
ユーザー Mao-betaMao-beta
提出日時 2024-08-22 16:29:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 1,000 ms
コード長 2,098 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 83,084 KB
最終ジャッジ日時 2024-08-22 16:29:36
合計ジャッジ時間 2,911 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
76,660 KB
testcase_01 AC 62 ms
83,084 KB
testcase_02 AC 62 ms
82,680 KB
testcase_03 AC 63 ms
82,736 KB
testcase_04 AC 38 ms
56,640 KB
testcase_05 AC 37 ms
56,472 KB
testcase_06 AC 36 ms
57,396 KB
testcase_07 AC 50 ms
55,980 KB
testcase_08 AC 61 ms
80,720 KB
testcase_09 AC 38 ms
56,604 KB
testcase_10 AC 38 ms
56,704 KB
testcase_11 AC 38 ms
56,808 KB
testcase_12 AC 37 ms
56,100 KB
testcase_13 AC 38 ms
56,464 KB
testcase_14 AC 37 ms
56,996 KB
testcase_15 AC 37 ms
56,672 KB
testcase_16 AC 37 ms
56,812 KB
testcase_17 AC 38 ms
56,704 KB
testcase_18 AC 43 ms
62,688 KB
testcase_19 AC 37 ms
56,952 KB
testcase_20 AC 36 ms
56,948 KB
testcase_21 AC 37 ms
58,204 KB
testcase_22 AC 40 ms
55,956 KB
testcase_23 AC 38 ms
57,400 KB
testcase_24 AC 39 ms
56,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.set_int_max_str_digits(10 ** 6)
sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    T, A, B = NMI()

    if T < max(A, B):
        print("NO")
        return

    if A == B == 0:
        if T == 1:
            print("NO")
            return
        print("YES")
        if T % 2:
            print(">")
            print("^<")
            print("v")
            for _ in range(T//2 - 1):
                print(">")
                print("<")
        else:
            for _ in range(T//2):
                print(">")
                print("<")
        return


    if A >= B:
        ans = []
        for i in range(A-B):
            ans.append("^")
        for i in range(B):
            ans.append("^>")
        if (T - A) % 2:
            x = ans.pop()
            if x == "^":
                ans.append(">")
                ans.append("<^")
            else:
                ans.append(">")
                ans.append("^")
        for i in range((T-A)//2):
            ans.append(">")
            ans.append("<")

    else:
        ans = []
        for i in range(B-A):
            ans.append(">")
        for i in range(A):
            ans.append("^>")
        if (T - B) % 2:
            x = ans.pop()
            if x == ">":
                ans.append("v")
                ans.append(">^")
            else:
                ans.append(">")
                ans.append("^")
        for i in range((T - B) // 2):
            ans.append(">")
            ans.append("<")

    print("YES")
    for s in ans:
        print(s)


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