結果

問題 No.522 Make Test Cases(テストケースを作る)
ユーザー muz_808muz_808
提出日時 2017-06-02 22:37:54
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,975 ms / 2,000 ms
コード長 1,389 bytes
コンパイル時間 1,861 ms
コンパイル使用メモリ 114,392 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-09-22 02:07:07
合計ジャッジ時間 6,413 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
18,304 KB
testcase_01 AC 89 ms
20,608 KB
testcase_02 AC 74 ms
19,712 KB
testcase_03 AC 154 ms
22,144 KB
testcase_04 AC 23 ms
17,792 KB
testcase_05 AC 23 ms
17,664 KB
testcase_06 AC 22 ms
17,920 KB
testcase_07 AC 23 ms
17,920 KB
testcase_08 AC 29 ms
17,792 KB
testcase_09 AC 121 ms
21,504 KB
testcase_10 AC 1,975 ms
21,760 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.Text;
using System.Linq;
using System.Collections.Generic;

class Program
{
    private static readonly Scanner sc = new Scanner();
    static void Main(string[] args)
    {
        int n = sc.Int;

        for (var i = 1; i < n; i++)
        {
            for (var j = i; j < n; j++)
            {
                int c = n - i - j;
                if (c < j)
                    break;
                Console.WriteLine("{0} {1} {2}", i, j, c);
            }
        }
    }
}

class Scanner
{
    private string[] _str = new string[0];
    private int _i;

    public string Line { get { return Console.ReadLine(); } }

    public string Str
    {
        get
        {
            if (_i >= _str.Length)
            {
                _str = Line.Split(' ');
                _i = 0;
            }
            return _str[_i++];
        }
    }

    public string[] StrArr { get { return Line.Split(' '); } }
    public int Int { get { return int.Parse(Str); } }
    public int[] IntArr { get { return Line.Split(' ').Select(int.Parse).ToArray(); } }
    public long Long { get { return long.Parse(Str); } }
    public long[] LongArr { get { return Line.Split(' ').Select(long.Parse).ToArray(); } }
    public double Double { get { return double.Parse(Str); } }
    public double[] DoubleArr { get { return Line.Split(' ').Select(double.Parse).ToArray(); } }
}
0