結果

問題 No.825 賢いお買い物
ユーザー ひばちひばち
提出日時 2019-05-03 21:47:51
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,469 bytes
コンパイル時間 3,355 ms
コンパイル使用メモリ 116,968 KB
実行使用メモリ 27,304 KB
最終ジャッジ日時 2024-06-10 06:34:14
合計ジャッジ時間 2,646 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,336 KB
testcase_01 AC 28 ms
25,128 KB
testcase_02 AC 25 ms
26,628 KB
testcase_03 AC 24 ms
24,624 KB
testcase_04 AC 23 ms
22,448 KB
testcase_05 WA -
testcase_06 AC 23 ms
24,572 KB
testcase_07 AC 22 ms
24,620 KB
testcase_08 AC 27 ms
25,388 KB
testcase_09 AC 24 ms
24,876 KB
testcase_10 AC 23 ms
24,748 KB
testcase_11 AC 30 ms
27,304 KB
testcase_12 AC 30 ms
25,000 KB
testcase_13 AC 23 ms
24,620 KB
testcase_14 AC 29 ms
25,256 KB
testcase_15 AC 28 ms
25,256 KB
testcase_16 AC 28 ms
27,304 KB
testcase_17 AC 27 ms
25,004 KB
testcase_18 AC 29 ms
23,088 KB
testcase_19 AC 28 ms
27,300 KB
testcase_20 AC 27 ms
25,388 KB
testcase_21 AC 28 ms
25,120 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 static System.Console;
using static System.Convert;
using static System.Math;
//using Debug;
//using static System.Globalization.CultureInfo;
using System.Text;
class Program
{
    static void Main(string[] args)
    {
        Solve();
        //WriteLine(Solve());
    }
    static void Solve()
    {
        var abc = Input.ar;
        if (abc[0] + abc[1] <= abc[2]) { WriteLine("Impossible");return; }
        var val = abc[0] + 10 * abc[1];
        var e = new List<int>() { val };
        for (var i = 0; i < abc[0]; i++)
            e.Add(val - i - 1);var c = e.Count;
        for (var i = 0; i < c; i++)
            for (var j = 0; j < abc[1]; j++)
                e.Add(e[i] - 10 * (j + 1));
        e = e.OrderByDescending(v => v).ToList();
        for(var i = 0; i <e.Count; i++)
        {
            for(var j=0;j<=abc[2];j++)
            {
                if (j + 10 * (abc[2] - j) == e[i]&&val-e[i]!=0) { WriteLine(val - e[i]);return; }
            }
        }
        WriteLine("Impossible");
    }
}

public class Input
{
    public static string read => ReadLine();
    public  static int[] ar => Array.ConvertAll(read.Split(' '), int.Parse);
    public  static int num => ToInt32(read);
    public static long[] arL => Array.ConvertAll(read.Split(' '), long.Parse);
    public  static long numL => ToInt64(read);
    public static char[][] gred(int h) 
        => Enumerable.Repeat(0, h).Select(v => read.ToCharArray()).ToArray();
    public static int[][] ar2D(int num)
        => Enumerable.Repeat(0, num).Select(_ => ar).ToArray();
    public static long[][] arL2D(int num)
        => Enumerable.Repeat(0, num).Select(_ => arL).ToArray();
    public static T getValue<T>(string g)
    {
        var t = typeof(T);
        if (t == typeof(int))
            return (T)(object)int.Parse(g);
        if (t == typeof(long))
            return (T)(object)long.Parse(g);
        if (t == typeof(string))
            return (T)(object)g;
        if (t == typeof(char))
            return (T)(object)char.Parse(g);
        if (t == typeof(double))
            return (T)(object)double.Parse(g);
        if (t == typeof(bool))
            return (T)(object)bool.Parse(g);
        return default(T);
    }
    public const long Inf = (long)1e18;
    public const double eps = 1e-6;
    public  const string alfa = "abcdefghijklmnopqrstuvwxyz";
    public  const int MOD = 1000000007;
}
0