This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Linq; | |
| using System.IO; | |
| using System.Diagnostics; | |
| using System.Collections.Generic; | |
| public class Program{ | |
| public static void Main(){ | |
| var stream = new StreamWriter(Console.OpenStandardOutput()){AutoFlush=false}; | |
| var watch = new Stopwatch(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Linq; | |
| using System.Collections.Generic; | |
| public class Program{ | |
| public static int[,] tatami; | |
| public static void Main(){ | |
| var tate = 4; | |
| var yoko = 7; | |
| //番兵法による外周 |
NewerOlder