結果

問題 No.232 めぐるはめぐる (2)
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-12-03 16:19:42
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 1,442 bytes
コンパイル時間 3,220 ms
コンパイル使用メモリ 77,276 KB
実行使用メモリ 63,868 KB
最終ジャッジ日時 2024-11-27 18:02:54
合計ジャッジ時間 11,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 573 ms
63,676 KB
testcase_01 AC 577 ms
63,588 KB
testcase_02 AC 551 ms
63,544 KB
testcase_03 AC 576 ms
63,868 KB
testcase_04 AC 130 ms
54,004 KB
testcase_05 WA -
testcase_06 AC 120 ms
52,780 KB
testcase_07 AC 130 ms
53,996 KB
testcase_08 AC 469 ms
63,340 KB
testcase_09 AC 127 ms
53,988 KB
testcase_10 AC 134 ms
53,992 KB
testcase_11 WA -
testcase_12 AC 128 ms
54,016 KB
testcase_13 AC 128 ms
53,836 KB
testcase_14 AC 119 ms
52,900 KB
testcase_15 AC 128 ms
53,904 KB
testcase_16 AC 120 ms
52,480 KB
testcase_17 AC 113 ms
53,064 KB
testcase_18 AC 160 ms
53,184 KB
testcase_19 WA -
testcase_20 AC 126 ms
53,864 KB
testcase_21 AC 127 ms
53,768 KB
testcase_22 AC 115 ms
52,632 KB
testcase_23 AC 128 ms
54,208 KB
testcase_24 AC 134 ms
54,044 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