結果

問題 No.1229 ラグビーの得点パターン
ユーザー eroge_mastereroge_master
提出日時 2023-04-20 14:35:32
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 2,557 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 105,088 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-04-23 12:49:22
合計ジャッジ時間 4,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
17,920 KB
testcase_01 AC 24 ms
17,920 KB
testcase_02 AC 25 ms
17,792 KB
testcase_03 AC 24 ms
17,792 KB
testcase_04 AC 26 ms
17,792 KB
testcase_05 AC 24 ms
18,048 KB
testcase_06 AC 25 ms
18,048 KB
testcase_07 AC 25 ms
17,920 KB
testcase_08 AC 25 ms
17,792 KB
testcase_09 AC 25 ms
17,792 KB
testcase_10 AC 25 ms
17,792 KB
testcase_11 AC 26 ms
17,920 KB
testcase_12 AC 24 ms
18,048 KB
testcase_13 AC 24 ms
17,664 KB
testcase_14 AC 23 ms
17,920 KB
testcase_15 AC 24 ms
17,920 KB
testcase_16 AC 25 ms
17,792 KB
testcase_17 AC 24 ms
18,048 KB
testcase_18 AC 24 ms
17,920 KB
testcase_19 AC 24 ms
18,176 KB
testcase_20 AC 24 ms
18,048 KB
testcase_21 AC 24 ms
17,792 KB
testcase_22 AC 24 ms
17,920 KB
testcase_23 AC 24 ms
17,920 KB
testcase_24 AC 24 ms
17,920 KB
testcase_25 AC 24 ms
17,536 KB
testcase_26 AC 26 ms
17,792 KB
testcase_27 AC 24 ms
17,920 KB
testcase_28 AC 24 ms
18,048 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

/*
YA team is awarded N points for rugby.
Count how many combinations of tries (T: 5 points), conversions (G: 2 points), and penalty goals (PG: 3 points) total N points.
Note that a conversion is always less than or equal to the number of tries because it is a kick after a try.
Also, there will be no dropped goals and no authorized tries.
Input:
N
Output:
Output the number of patterns, and then start a new line.
*/


using System;
using System.Linq;
using Internal;
using System.Collections.Generic;
using System.Text;

class Scanner
{
    string[] s;
    int i;
    char[] cs = new char[] { ' ' };
    public Scanner()
    {
        s = new string[0];
        i = 0;
    }

    public string Next()
    {
        if (i < s.Length) return s[i++];
        string st = Console.ReadLine();
        while (st == "") st = Console.ReadLine();
        s = st.Split(cs, StringSplitOptions.RemoveEmptyEntries);
        if (s.Length == 0) return Next();
        i = 0;
        return s[i++];
    }

    public int NextInt()
    {
        return int.Parse(Next());
    }

    public long NextLong()
    {
        return long.Parse(Next());
    }

    public double NextDouble()
    {
        return double.Parse(Next());
    }

    public ulong NextUlong()
    {
        return ulong.Parse(Next());
    }

    public decimal NextDecimal()
    {
        return decimal.Parse(Next());
    }

    public int[] ArrayInt(int N, int add = 0)
    {
        int[] Array = new int[N];
        for (int i = 0; i < N; i++)
        {
            Array[i] = NextInt() + add;
        }
        return Array;
    }

    public double[] ArrayDouble(int N, double add = 0)
    {
        double[] Array = new double[N];
        for (int i = 0; i < N; i++)
        {
            Array[i] = NextDouble() + add;
        }
        return Array;
    }

    public long[] ArrayLong(long N, long add = 0)
    {
        long[] Array = new long[N];
        for (long i = 0; i < N; i++)
        {
            Array[i] = NextLong() + add;
        }
        return Array;
    }
}

class Program
{
    static void Main()
    {
        Scanner sc = new Scanner();
        int N = sc.NextInt();
        int ans = 0;
        for (int i = 0; i <= N / 5; i++)
        {
            for (int j = 0; j <= i; j++)
            {
                for (int k = 0; k <= N / 3; k++)
                {
                    if (i * 5 + j * 2 + k * 3 == N)
                    {
                        ans++;
                    }
                }
            }
        }
        Console.WriteLine(ans);
    }
}
0