結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー mbanmban
提出日時 2017-06-03 14:23:05
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 459 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 862 ms
コンパイル使用メモリ 112,444 KB
実行使用メモリ 66,252 KB
最終ジャッジ日時 2024-09-22 04:30:10
合計ジャッジ時間 3,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
23,868 KB
testcase_01 AC 38 ms
28,056 KB
testcase_02 AC 34 ms
25,652 KB
testcase_03 AC 53 ms
29,388 KB
testcase_04 AC 22 ms
23,528 KB
testcase_05 AC 22 ms
23,640 KB
testcase_06 AC 22 ms
23,912 KB
testcase_07 AC 22 ms
24,108 KB
testcase_08 AC 24 ms
23,984 KB
testcase_09 AC 44 ms
30,688 KB
testcase_10 AC 459 ms
66,252 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

class Program
{
    static void Main(string[] args)
    {
        new Magatro().Solve();
    }
}

class Magatro
{
    private int N;
    public void Solve()
    {
        N = int.Parse(Console.ReadLine());
        var sb = new StringBuilder();
        for (int a = 1; a <= N / 3; a++)
        {
            for (int b = a; b <= (N - a) / 2; b++)
            {
                int c = N - a - b;
                if (c <= 0 || b > c)
                {
                    continue;
                }
                sb.Append(string.Format("{0} {1} {2}\n", a, b, c));
            }
        }
        Console.Write(sb.ToString());
    }
}

0