結果
| 問題 | No.232 めぐるはめぐる (2) |
| コンテスト | |
| ユーザー |
taba
|
| 提出日時 | 2016-04-16 05:29:35 |
| 言語 | PyPy2 (7.3.20) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 363 bytes |
| 記録 | |
| コンパイル時間 | 148 ms |
| コンパイル使用メモリ | 77,732 KB |
| 最終ジャッジ日時 | 2025-12-03 20:24:35 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 WA * 12 |
ソースコード
t,a,b=map(int,raw_input().split()) m=max(a,b) if m>t: print"NO" exit() print"YES" v,w=a-1,b-1 x=y=0 while x!=v or y!=w: s="" if x<v: s+=">" x+=1 elif x>v: s+="<" x-=1 if y<w: s+="^" y+=1 elif y>w: s+="v" y-=1 print s t-=1 while t>0: if t==1: print"^>" t-=1 elif t==2: print">" print"^" t-=2 else: print">" print"<" t-=2
taba