結果

問題 No.232 めぐるはめぐる (2)
ユーザー GrenacheGrenache
提出日時 2015-06-27 09:08:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 244 ms / 1,000 ms
コード長 2,627 bytes
コンパイル時間 3,943 ms
コンパイル使用メモリ 78,204 KB
実行使用メモリ 42,824 KB
最終ジャッジ日時 2024-09-14 12:34:18
合計ジャッジ時間 9,163 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
41,444 KB
testcase_01 AC 235 ms
42,824 KB
testcase_02 AC 244 ms
42,088 KB
testcase_03 AC 241 ms
42,292 KB
testcase_04 AC 138 ms
41,228 KB
testcase_05 AC 139 ms
41,484 KB
testcase_06 AC 140 ms
41,584 KB
testcase_07 AC 138 ms
41,320 KB
testcase_08 AC 220 ms
42,348 KB
testcase_09 AC 136 ms
41,320 KB
testcase_10 AC 137 ms
41,448 KB
testcase_11 AC 134 ms
41,656 KB
testcase_12 AC 134 ms
41,620 KB
testcase_13 AC 135 ms
41,484 KB
testcase_14 AC 144 ms
41,568 KB
testcase_15 AC 137 ms
41,448 KB
testcase_16 AC 132 ms
41,448 KB
testcase_17 AC 135 ms
41,820 KB
testcase_18 AC 154 ms
41,800 KB
testcase_19 AC 127 ms
41,248 KB
testcase_20 AC 131 ms
41,212 KB
testcase_21 AC 135 ms
41,508 KB
testcase_22 AC 138 ms
41,408 KB
testcase_23 AC 137 ms
41,440 KB
testcase_24 AC 136 ms
41,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.io.PrintWriter;
import java.util.Scanner;


public class Main_yukicoder232 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Printer pr = new Printer(System.out);

        int t = sc.nextInt();
        int a = sc.nextInt();
        int b = sc.nextInt();

        int d = Math.max(a, b);
        if (t >= d && (d != 0 || t != 1)) {
        	pr.println("YES");
            int x = 0;
            int y = 0;
        	for (int i = 0; i < t; i++) {
        		d = Math.max(Math.abs(b - x), Math.abs(a - y));
        		
        		if (d % 2 == (t - i) % 2) {
        			if (a - y > 0 && b - x > 0) {
    					pr.println("^>");
    					x++;
    					y++;
        			} else if (a - y > 0 && b - x == 0) {
    					pr.println("^");
    					y++;
        			} else if (a - y > 0 && b - x < 0) {
    					pr.println("^<");
    					y++;
    					x--;
        			} else if (a - y == 0 && b - x > 0) {
    					pr.println(">");
    					x++;
        			} else if (a - y == 0 && b - x == 0) {
    					pr.println(">");
    					x++;
        			} else if (a - y == 0 && b - x < 0) {
    					pr.println("<");
    					x--;
        			} else if (a - y < 0 && b - x > 0) {
    					pr.println("v>");
    					x++;
    					y--;
        			} else if (a - y < 0 && b - x == 0) {
    					pr.println("v");
    					y--;
        			} else if (a - y < 0 && b - x < 0) {
    					pr.println("v<");
    					y--;
    					x--;
        			}
        		} else {
        			if (a - y > 0 && b - x > 0) {
    					pr.println(">");
    					x++;
        			} else if (a - y > 0 && b - x == 0) {
    					pr.println("^>");
    					x++;
    					y++;
        			} else if (a - y > 0 && b - x < 0) {
    					pr.println("^");
    					y++;
        			} else if (a - y == 0 && b - x > 0) {
    					pr.println("^>");
    					y++;
    					x++;
        			} else if (a - y == 0 && b - x == 0) {
    					pr.println(">");
    					x++;
        			} else if (a - y == 0 && b - x < 0) {
    					pr.println("v<");
    					y--;
    					x--;
        			} else if (a - y < 0 && b - x > 0) {
    					pr.println(">");
    					x++;
        			} else if (a - y < 0 && b - x == 0) {
    					pr.println("v>");
    					x++;
    					y--;
        			} else if (a - y < 0 && b - x < 0) {
    					pr.println("v");
    					y--;
        			}
        		}
        	}
        } else {
        	pr.println("NO");
        }
        
        sc.close();
        pr.close();
    }

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0