結果

問題 No.232 めぐるはめぐる (2)
ユーザー GrenacheGrenache
提出日時 2015-06-27 00:17:43
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,327 bytes
コンパイル時間 4,813 ms
コンパイル使用メモリ 78,088 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-07-07 19:33:18
合計ジャッジ時間 9,490 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 232 ms
42,572 KB
testcase_01 AC 239 ms
41,480 KB
testcase_02 AC 243 ms
41,988 KB
testcase_03 AC 223 ms
42,400 KB
testcase_04 AC 134 ms
41,120 KB
testcase_05 WA -
testcase_06 AC 140 ms
41,320 KB
testcase_07 AC 137 ms
41,128 KB
testcase_08 AC 232 ms
42,368 KB
testcase_09 AC 122 ms
39,996 KB
testcase_10 AC 138 ms
41,352 KB
testcase_11 WA -
testcase_12 AC 131 ms
41,212 KB
testcase_13 AC 134 ms
41,228 KB
testcase_14 AC 135 ms
41,248 KB
testcase_15 AC 135 ms
41,172 KB
testcase_16 AC 135 ms
41,260 KB
testcase_17 AC 135 ms
41,268 KB
testcase_18 AC 148 ms
41,340 KB
testcase_19 WA -
testcase_20 AC 135 ms
41,184 KB
testcase_21 AC 121 ms
39,960 KB
testcase_22 AC 136 ms
41,248 KB
testcase_23 AC 135 ms
41,180 KB
testcase_24 AC 136 ms
41,372 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 len = Math.min(a, b) + Math.abs(a - b);
        int x = 0;
        int y = 0;
        if (t >= len) {
        	pr.println("YES");
        	for (int i = 0; i < t; i++) {
        		int d = Math.min(b - x, a - y) + Math.abs(b - x - (a - y));
        		if (a - y > b - x) {
        			pr.println("^");
        			y++;
        		} else if (a - y < b - x) {
        			pr.println(">");
        			x++;
        		} else {
        			if (a - y != 0) {
        				if ((t - i - d) % 2 == 0) {
        					pr.println("^>");
        					x++;
        					y++;
        				} else {
        					pr.println(">");
        					x++;
        				}
        			} else {
        				pr.println("v<");
        				x--;
        				y--;
        			}
        		}
        	}
        } else {
        	pr.println("NO");
        }
        
        sc.close();
        pr.close();
    }

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