結果

問題 No.232 めぐるはめぐる (2)
ユーザー lloyzlloyz
提出日時 2023-09-16 19:10:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,110 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 76,476 KB
最終ジャッジ日時 2024-07-03 18:38:38
合計ジャッジ時間 4,102 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 60 ms
75,656 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 38 ms
52,928 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 37 ms
52,428 KB
testcase_08 WA -
testcase_09 AC 38 ms
53,076 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 37 ms
52,344 KB
testcase_14 WA -
testcase_15 AC 37 ms
53,560 KB
testcase_16 AC 36 ms
53,016 KB
testcase_17 AC 38 ms
52,764 KB
testcase_18 WA -
testcase_19 AC 37 ms
52,704 KB
testcase_20 WA -
testcase_21 AC 36 ms
52,864 KB
testcase_22 AC 36 ms
53,248 KB
testcase_23 AC 38 ms
52,812 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

t, a, b = map(int, input().split())
if a > t or b > t:
    print("NO")
    exit()
print("YES")
aa = t - (t - a) % 2
bb = t - (t - b) % 2
ca, cb = 0, 0
if aa < t and bb < t:
    for i in range(t):
        if i == 0:
            print('^')
            ca += 1
        elif i == t - 1:
            if cb < b:
                print('>')
            else:
                print('<')
            cb += 1
        else:
            res = ''
            if ca <= a:
                res += '^'
            else:
                res += 'v'
            if cb <= b:
                res += '>'
            else:
                res += '<'
            print(res)
            ca += 1
            cb += 1
else:
    for i in range(t):
        res = ''
        if i == 0:
            if a == t:
                res += '^'
            if b == t:
                res += '>'
        else:
            if ca <= a:
                res += '^'
            else:
                res += 'v'
            if cb <= b:
                res += '>'
            else:
                res += '<'
        print(res)
        ca += 1
        cb += 1
0