結果

問題 No.232 めぐるはめぐる (2)
ユーザー Mao-betaMao-beta
提出日時 2024-08-22 16:26:09
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,696 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,792 KB
実行使用メモリ 83,112 KB
最終ジャッジ日時 2024-08-22 16:26:13
合計ジャッジ時間 3,831 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
82,732 KB
testcase_01 AC 83 ms
82,700 KB
testcase_02 AC 64 ms
83,112 KB
testcase_03 AC 67 ms
82,524 KB
testcase_04 AC 43 ms
56,696 KB
testcase_05 RE -
testcase_06 AC 39 ms
56,940 KB
testcase_07 AC 37 ms
56,444 KB
testcase_08 AC 59 ms
80,520 KB
testcase_09 AC 41 ms
55,712 KB
testcase_10 AC 37 ms
56,884 KB
testcase_11 AC 36 ms
56,916 KB
testcase_12 AC 40 ms
56,700 KB
testcase_13 RE -
testcase_14 AC 37 ms
57,256 KB
testcase_15 AC 38 ms
56,432 KB
testcase_16 AC 37 ms
57,632 KB
testcase_17 AC 38 ms
56,652 KB
testcase_18 AC 43 ms
63,580 KB
testcase_19 AC 39 ms
56,664 KB
testcase_20 AC 37 ms
56,588 KB
testcase_21 AC 36 ms
57,072 KB
testcase_22 AC 35 ms
56,168 KB
testcase_23 AC 37 ms
56,172 KB
testcase_24 AC 37 ms
57,376 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:
        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