結果
問題 | No.351 市松スライドパズル |
ユーザー | abL8ZLsTbF |
提出日時 | 2016-04-08 21:03:13 |
言語 | C#(csc) (csc 3.9.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,308 bytes |
コンパイル時間 | 769 ms |
コンパイル使用メモリ | 110,156 KB |
実行使用メモリ | 165,664 KB |
最終ジャッジ日時 | 2024-10-04 04:54:45 |
合計ジャッジ時間 | 7,272 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 515 ms
37,068 KB |
testcase_01 | AC | 23 ms
26,020 KB |
testcase_02 | AC | 22 ms
24,108 KB |
testcase_03 | AC | 23 ms
23,916 KB |
testcase_04 | AC | 22 ms
24,224 KB |
testcase_05 | AC | 22 ms
25,952 KB |
testcase_06 | AC | 21 ms
22,068 KB |
testcase_07 | AC | 22 ms
26,148 KB |
testcase_08 | AC | 22 ms
26,020 KB |
testcase_09 | AC | 22 ms
25,948 KB |
testcase_10 | AC | 22 ms
25,896 KB |
testcase_11 | AC | 22 ms
24,236 KB |
testcase_12 | AC | 21 ms
23,912 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()); for (int i = 0; i < n; i++) { string[] move = Console.ReadLine().Split(); int line = int.Parse(move[1]); if (move[0] == "C") { bool[] temp = new bool[size[0]]; for (int j = 0; j < size[0]; j++) { temp[j] = isWhite[j, line]; } for (int j = 0; j < size[0]; j++) { isWhite[(j+1)%size[0], line] = temp[j]; } } else { bool[] temp = new bool[size[1]]; for (int j = 0; j < size[1]; j++) { temp[j] = isWhite[line, j]; } for (int j = 0; j < size[1]; j++) { isWhite[line, (j+1)%size[1]] = temp[j]; } } } Console.WriteLine(isWhite[0, 0] ? "white" : "black"); } }