結果

問題 No.232 めぐるはめぐる (2)
ユーザー nCk_cvnCk_cv
提出日時 2015-08-03 02:16:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,123 bytes
コンパイル時間 2,309 ms
コンパイル使用メモリ 78,696 KB
実行使用メモリ 67,424 KB
最終ジャッジ日時 2024-07-18 00:54:38
合計ジャッジ時間 10,594 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 628 ms
67,396 KB
testcase_02 AC 597 ms
63,648 KB
testcase_03 AC 600 ms
67,424 KB
testcase_04 AC 188 ms
61,552 KB
testcase_05 AC 142 ms
54,172 KB
testcase_06 WA -
testcase_07 AC 182 ms
56,972 KB
testcase_08 AC 526 ms
65,252 KB
testcase_09 AC 180 ms
59,200 KB
testcase_10 AC 145 ms
54,112 KB
testcase_11 WA -
testcase_12 AC 140 ms
54,368 KB
testcase_13 WA -
testcase_14 AC 136 ms
54,156 KB
testcase_15 WA -
testcase_16 AC 139 ms
53,896 KB
testcase_17 AC 140 ms
54,112 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 140 ms
54,216 KB
testcase_22 AC 140 ms
54,164 KB
testcase_23 AC 138 ms
54,132 KB
testcase_24 AC 143 ms
53,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int t = sc.nextInt();
		int a = sc.nextInt();
		int b = sc.nextInt();
		
		int nowa = 0;
		int nowb = 0;
		
		
		int i;
		ArrayList<String> list = new ArrayList<String>();
		
		for(i = 0; i < t-1; i++) {
			if(nowa == a-1 && nowb == b-1) break;
			StringBuilder sb = new StringBuilder();
			if(nowa < a-1) {
				nowa++;
				sb.append("^");
			}
			if(nowb < b-1) {
				nowb++;
				sb.append(">");
			}
			list.add(sb.toString());
		}
		if(nowa != a-1 || nowb != b-1) {
			System.out.println("NO");
			return;
		}
		System.out.println("YES");
		for(int j = 0; j < list.size(); j++) {
			System.out.println(list.get(j));
		}
		if(i == t-1) {
			System.out.println("^>");
			return;
		}
		i++;
		nowa++;
		System.out.println("^");
		for(; i < t-1; i++) {
			if(nowa == a) {
				System.out.println("v>");
				nowa = a-1;
			}
			else {
				System.out.println("^<");
				nowa = a;
			}
		}
		if(nowa == a) {
			System.out.println(">");
		}
		else {
			System.out.println("^");
		}
		
		
		
		
		
		
		
		
		
	}
}
0