結果

問題 No.232 めぐるはめぐる (2)
ユーザー 👑 KazunKazun
提出日時 2021-06-19 01:59:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 1,000 ms
コード長 560 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 88,192 KB
最終ジャッジ日時 2024-06-22 21:49:24
合計ジャッジ時間 2,475 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
88,064 KB
testcase_01 AC 56 ms
77,184 KB
testcase_02 AC 72 ms
88,192 KB
testcase_03 AC 64 ms
82,560 KB
testcase_04 AC 34 ms
52,096 KB
testcase_05 AC 33 ms
51,840 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 68 ms
78,720 KB
testcase_09 AC 34 ms
52,480 KB
testcase_10 AC 34 ms
51,968 KB
testcase_11 AC 33 ms
52,352 KB
testcase_12 AC 32 ms
51,584 KB
testcase_13 AC 33 ms
52,096 KB
testcase_14 AC 34 ms
51,840 KB
testcase_15 AC 33 ms
52,352 KB
testcase_16 AC 34 ms
51,584 KB
testcase_17 AC 32 ms
51,584 KB
testcase_18 AC 38 ms
58,752 KB
testcase_19 AC 33 ms
52,096 KB
testcase_20 AC 32 ms
52,352 KB
testcase_21 AC 34 ms
51,840 KB
testcase_22 AC 33 ms
52,288 KB
testcase_23 AC 32 ms
52,096 KB
testcase_24 AC 34 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if T==1:
    if (A,B)==(1,0):
        print("YES")
        print("^")
    elif (A,B)==(0,1):
        print("YES")
        print(">")
    elif (A,B)==(1,1):
        print("YES")
        print("^>")
    else:
        print("NO")
    exit()

if A>T or B>T:
    exit(print("NO"))

X=["^"]*A
while len(X)<T-1:
    X.append("v")
    X.append("^")

if len(X)==T-1:
    X.insert(0,"")

Y=[">"]*B
while len(Y)<T-1:
    Y.append("<")
    Y.append(">")

if len(Y)==T-1:
    Y.insert(1,"")

print("YES")
for x,y in zip(X,Y):
    print(x+y)
0