結果
問題 | No.351 市松スライドパズル |
ユーザー | abL8ZLsTbF |
提出日時 | 2016-04-08 21:05:30 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,298 bytes |
コンパイル時間 | 955 ms |
コンパイル使用メモリ | 112,192 KB |
実行使用メモリ | 125,756 KB |
最終ジャッジ日時 | 2024-10-04 04:55:21 |
合計ジャッジ時間 | 6,835 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 564 ms
27,008 KB |
testcase_01 | AC | 24 ms
18,048 KB |
testcase_02 | AC | 24 ms
17,920 KB |
testcase_03 | AC | 25 ms
17,536 KB |
testcase_04 | AC | 24 ms
17,792 KB |
testcase_05 | AC | 24 ms
17,792 KB |
testcase_06 | AC | 24 ms
17,920 KB |
testcase_07 | AC | 24 ms
17,664 KB |
testcase_08 | AC | 24 ms
17,920 KB |
testcase_09 | AC | 25 ms
17,792 KB |
testcase_10 | AC | 24 ms
17,664 KB |
testcase_11 | AC | 24 ms
17,792 KB |
testcase_12 | AC | 25 ms
17,792 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc) Copyright (C) Microsoft Corporation. All rights reserved.
ソースコード
using System; public class Program { public static void Main() { int[] size = Array.ConvertAll(Console.ReadLine().Split(), value => int.Parse(value)); bool[,] isWhite = new bool[size[0], size[1]]; for (int i = 0; i < size[0]; i++) { for (int j = 0; j < size[1]; j++) { isWhite[i, j] = ((i+j)&1) == 0; } } int n = int.Parse(Console.ReadLine()); bool[] tempC = new bool[size[0]]; bool[] tempR = new bool[size[1]]; for (int i = 0; i < n; i++) { string[] move = Console.ReadLine().Split(); int line = int.Parse(move[1]); if (move[0] == "C") { for (int j = 0; j < size[0]; j++) { tempC[j] = isWhite[j, line]; } for (int j = 0; j < size[0]; j++) { isWhite[(j+1)%size[0], line] = tempC[j]; } } else { for (int j = 0; j < size[1]; j++) { tempR[j] = isWhite[line, j]; } for (int j = 0; j < size[1]; j++) { isWhite[line, (j+1)%size[1]] = tempR[j]; } } } Console.WriteLine(isWhite[0, 0] ? "white" : "black"); } }