結果

問題 No.232 めぐるはめぐる (2)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-03 16:19:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,442 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 76,952 KB
実行使用メモリ 54,020 KB
最終ジャッジ日時 2024-05-05 18:09:35
合計ジャッジ時間 12,781 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 589 ms
51,776 KB
testcase_01 AC 593 ms
51,848 KB
testcase_02 AC 549 ms
48,864 KB
testcase_03 AC 582 ms
51,040 KB
testcase_04 AC 139 ms
41,000 KB
testcase_05 WA -
testcase_06 AC 134 ms
41,096 KB
testcase_07 AC 125 ms
41,424 KB
testcase_08 AC 505 ms
51,248 KB
testcase_09 AC 136 ms
41,164 KB
testcase_10 AC 145 ms
41,040 KB
testcase_11 WA -
testcase_12 AC 136 ms
41,288 KB
testcase_13 AC 137 ms
41,376 KB
testcase_14 AC 134 ms
41,476 KB
testcase_15 AC 134 ms
41,808 KB
testcase_16 AC 135 ms
41,568 KB
testcase_17 AC 134 ms
41,252 KB
testcase_18 AC 177 ms
41,420 KB
testcase_19 WA -
testcase_20 AC 137 ms
41,092 KB
testcase_21 AC 137 ms
41,032 KB
testcase_22 AC 137 ms
40,996 KB
testcase_23 AC 136 ms
41,164 KB
testcase_24 AC 136 ms
44,880 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();
        int big=Math.max(A,B);
        int small=Math.min(A,B);
        int c1=small;
        int c2=0;
        if(T<big){
            System.out.println("NO");
        }else{
            System.out.println("YES");
            String S1="";
            String S2="";
            if(A<=B){
                S1=">";
                S2="^";
            }else{
                S1="^";
                S2=">";
            }
            if(T-big==1){
                c1--;
                System.out.println(S2);
            }
            c2=big-c1;
            for(int i=0; i<c1; i++){
                System.out.println(">^");
            }
            for(int i=0; i<c2; i++){
                System.out.println(S1);
            }
            stand(T-big);
        }
    }
    static void stand(int z){
        if(z<=1){
            return;
        }else if(z%2==0){
            for(int i=0; i<z/2; i++){
                System.out.println(">");
                System.out.println("<");
            }
            return;
        }else{
            System.out.println(">^");
            System.out.println("<");
            System.out.println("v");
            z-=3;
            stand(z);
            return;
        }
    }
}
0