コード例 #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
ファイル: 2488056.cs プロジェクト: qifanyyy/CLCDSA
    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 { }
    }