示例#1
0
    static public void Main()
    {
        var solver = new Program.Solver();

        solver.Solve();
        Program.IO.Printer.Out.Flush();
    }
示例#2
0
    static public void Main()
    {
        //Console.SetOut(new Program.IO.Printer(Console.OpenStandardOutput()) { AutoFlush = false });
        var solver = new Program.Solver();

        solver.Solve();
        Console.Out.Flush();
    }
示例#3
0
    static public void Main()
    {
        Console.SetOut(new Program.IO.Printer(Console.OpenStandardOutput())
        {
            AutoFlush = true
        });
        var solver = new Program.Solver();

        try
        {
            solver.Solve();
            Console.Out.Flush();
        }
        catch { }
    }