結果

問題 No.232 めぐるはめぐる (2)
ユーザー fal_rndfal_rnd
提出日時 2016-10-29 23:06:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 841 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 77,472 KB
実行使用メモリ 59,796 KB
最終ジャッジ日時 2024-11-24 23:27:28
合計ジャッジ時間 12,278 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 734 ms
59,720 KB
testcase_01 AC 894 ms
59,344 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 132 ms
53,880 KB
testcase_05 AC 133 ms
53,812 KB
testcase_06 AC 134 ms
54,072 KB
testcase_07 AC 129 ms
53,884 KB
testcase_08 WA -
testcase_09 AC 131 ms
54,088 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 132 ms
54,072 KB
testcase_13 AC 118 ms
52,984 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 133 ms
53,792 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 130 ms
53,876 KB
testcase_22 AC 131 ms
54,300 KB
testcase_23 AC 131 ms
54,248 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A{
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int m=s.nextInt(),tx=s.nextInt(),ty=s.nextInt(),x=0,y=0;
		if((tx>m||ty>m)||(tx==0&&ty==0&&m==1)) {
			System.out.println("NO");
			return;
		}
		System.out.println("YES");
		for(int i=0; i<m; i++) {
			if((i==m-2)&&(x==tx||y==ty)) {
				if(x==tx) {
					System.out.print('<');
					--x;
				}else {
					System.out.print('v');
					--y;
				}
			}else {
				if(x==tx&&y==ty) {
					System.out.print('<');
					--x;
				}else {
					if(x<tx) {
						System.out.print('>');
						x++;
					}else if (x>tx) {
						System.out.print('<');
						--x;
					}
					if(y<ty) {
						System.out.print('^');
						y++;
					}else if (y>ty) {
						System.out.print('v');
						--y;
					}
				}
			}
			System.out.println();
		}
	}
}
0