結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | nCk_cv |
提出日時 | 2015-08-03 02:20:21 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,316 bytes |
コンパイル時間 | 2,289 ms |
コンパイル使用メモリ | 77,464 KB |
実行使用メモリ | 60,196 KB |
最終ジャッジ日時 | 2024-07-18 00:54:50 |
合計ジャッジ時間 | 10,774 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 570 ms
60,196 KB |
testcase_02 | AC | 577 ms
51,640 KB |
testcase_03 | AC | 586 ms
57,184 KB |
testcase_04 | AC | 186 ms
50,368 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 165 ms
50,520 KB |
testcase_08 | AC | 509 ms
55,496 KB |
testcase_09 | AC | 174 ms
48,436 KB |
testcase_10 | AC | 138 ms
40,792 KB |
testcase_11 | WA | - |
testcase_12 | AC | 132 ms
47,848 KB |
testcase_13 | WA | - |
testcase_14 | AC | 124 ms
46,788 KB |
testcase_15 | AC | 134 ms
41,480 KB |
testcase_16 | AC | 131 ms
41,388 KB |
testcase_17 | AC | 132 ms
40,804 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 133 ms
47,712 KB |
testcase_22 | AC | 133 ms
41,012 KB |
testcase_23 | AC | 132 ms
40,988 KB |
testcase_24 | AC | 134 ms
41,336 KB |
ソースコード
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 && nowa != a) || (nowb != b-1 && nowb != b) ) { 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) { StringBuilder sb = new StringBuilder(); if(nowa < a) { nowa++; sb.append("^"); } if(nowb < b) { nowb++; sb.append(">"); } System.out.println(sb.toString()); 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("^"); } } }