結果

問題 No.232 めぐるはめぐる (2)
ユーザー tentententen
提出日時 2021-03-18 09:30:22
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,122 bytes
コンパイル時間 2,691 ms
コンパイル使用メモリ 77,268 KB
実行使用メモリ 59,180 KB
最終ジャッジ日時 2024-11-16 05:59:49
合計ジャッジ時間 8,091 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 195 ms
58,880 KB
testcase_01 AC 189 ms
58,952 KB
testcase_02 AC 197 ms
58,912 KB
testcase_03 AC 196 ms
59,180 KB
testcase_04 AC 134 ms
53,656 KB
testcase_05 RE -
testcase_06 AC 133 ms
53,860 KB
testcase_07 AC 135 ms
53,876 KB
testcase_08 AC 183 ms
56,480 KB
testcase_09 AC 137 ms
54,148 KB
testcase_10 AC 137 ms
54,096 KB
testcase_11 AC 136 ms
54,000 KB
testcase_12 AC 136 ms
53,772 KB
testcase_13 RE -
testcase_14 AC 134 ms
53,856 KB
testcase_15 AC 137 ms
53,708 KB
testcase_16 AC 138 ms
53,872 KB
testcase_17 AC 137 ms
53,988 KB
testcase_18 AC 136 ms
53,992 KB
testcase_19 AC 139 ms
54,324 KB
testcase_20 RE -
testcase_21 AC 136 ms
54,144 KB
testcase_22 AC 136 ms
54,080 KB
testcase_23 AC 135 ms
53,860 KB
testcase_24 AC 138 ms
54,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public 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();
        if (t < a || t < b) {
            System.out.println("NO");
            return;
        }
        int[][] steps = new int[t][2];
        int start = 0;
        while (t - start > a + b) {
            steps[start][0] = 1;
            steps[start + 1][0] = -1;
            start += 2;
        }
        for (int i = 0; i < a; i++) {
            steps[start + i][0] = 1;
        }
        for (int i = 0; i < b; i++) {
            steps[t - 1 - i][1] = 1;
        }
        StringBuilder sb = new StringBuilder();
        sb.append("YES\n");
        for (int i = 0; i < t; i++) {
            if (steps[i][0] == 1) {
                sb.append("^");
            } else if (steps[i][0] == -1) {
                sb.append("v");
            }
            if (steps[i][1] == 1) {
                sb.append(">");
            }
            sb.append("\n");
        }
        System.out.print(sb);
    }
}
0