結果
問題 | No.232 めぐるはめぐる (2) |
ユーザー | nokonoko |
提出日時 | 2015-07-01 00:41:45 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,389 bytes |
コンパイル時間 | 852 ms |
コンパイル使用メモリ | 112,116 KB |
実行使用メモリ | 28,080 KB |
最終ジャッジ日時 | 2024-07-07 21:32:15 |
合計ジャッジ時間 | 3,196 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 202 ms
26,104 KB |
testcase_01 | AC | 196 ms
28,080 KB |
testcase_02 | AC | 206 ms
23,940 KB |
testcase_03 | AC | 207 ms
25,852 KB |
testcase_04 | AC | 24 ms
21,940 KB |
testcase_05 | AC | 22 ms
24,060 KB |
testcase_06 | AC | 21 ms
25,840 KB |
testcase_07 | AC | 20 ms
22,064 KB |
testcase_08 | AC | 151 ms
25,852 KB |
testcase_09 | AC | 23 ms
23,984 KB |
testcase_10 | AC | 22 ms
22,064 KB |
testcase_11 | AC | 21 ms
24,092 KB |
testcase_12 | AC | 21 ms
23,980 KB |
testcase_13 | AC | 21 ms
21,936 KB |
testcase_14 | AC | 21 ms
23,964 KB |
testcase_15 | AC | 20 ms
23,828 KB |
testcase_16 | AC | 21 ms
23,676 KB |
testcase_17 | WA | - |
testcase_18 | AC | 23 ms
21,944 KB |
testcase_19 | AC | 21 ms
25,868 KB |
testcase_20 | AC | 20 ms
23,980 KB |
testcase_21 | AC | 20 ms
21,812 KB |
testcase_22 | AC | 22 ms
24,080 KB |
testcase_23 | AC | 22 ms
25,748 KB |
testcase_24 | AC | 20 ms
23,704 KB |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; namespace YukiCoderNo232 { class Program { static void Main() { string[] buffer = (Console.ReadLine()).Split(' '); int turn = int.Parse(buffer[0]); int posY = int.Parse(buffer[1]); int posX = int.Parse(buffer[2]); int posMax = Math.Max(posX, posY); if ((turn >= posMax) && (!((posMax == 0) && (turn == 1)))) { Console.WriteLine("YES"); int dummyStepTurnX = turn - posX; int dummyStepTurnY = turn - posY; int[] stepListX = new int[turn]; int[] stepListY = new int[turn]; for (int i = 0, dummyX = (dummyStepTurnX - (dummyStepTurnX % 2)); i < dummyX; i++) { stepListX[i] = ((i % 2) << 1) - 1; } for (int i = dummyStepTurnX; i < turn; i++) { stepListX[i] = 1; } for (int i = 0, dummyY = (dummyStepTurnY - (dummyStepTurnY % 2)); i < dummyY; i++) { stepListY[i] = ((i % 2) << 1) - 1; } for (int i = dummyStepTurnY; i < turn; i++) { stepListY[i] = 1; } if ((dummyStepTurnX % 2) != 0) { int stepBuffer = stepListX[0]; stepListX[0] = stepListX[dummyStepTurnX - 1]; stepListX[dummyStepTurnX - 1] = stepBuffer; } for (int i = 0; i < turn; i++) { string output = ""; if (stepListX[i] == 1) { output += ">"; } else if (stepListX[i] == -1) { output += "<"; } if (stepListY[i] == 1) { output += "^"; } else if (stepListY[i] == -1) { output += "v"; } Console.WriteLine(output); } } else { Console.WriteLine("NO"); } } } }