結果

問題 No.825 賢いお買い物
ユーザー ひばちひばち
提出日時 2019-05-03 21:38:56
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 2,147 bytes
コンパイル時間 875 ms
コンパイル使用メモリ 116,756 KB
実行使用メモリ 26,144 KB
最終ジャッジ日時 2024-06-10 06:30:52
合計ジャッジ時間 2,252 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
23,928 KB
testcase_01 AC 27 ms
26,136 KB
testcase_02 AC 26 ms
25,896 KB
testcase_03 AC 26 ms
26,104 KB
testcase_04 AC 26 ms
23,964 KB
testcase_05 WA -
testcase_06 AC 25 ms
26,144 KB
testcase_07 AC 26 ms
23,804 KB
testcase_08 AC 27 ms
26,020 KB
testcase_09 AC 26 ms
23,984 KB
testcase_10 AC 25 ms
23,936 KB
testcase_11 AC 27 ms
25,764 KB
testcase_12 AC 28 ms
25,972 KB
testcase_13 AC 27 ms
24,192 KB
testcase_14 AC 26 ms
24,108 KB
testcase_15 AC 28 ms
26,016 KB
testcase_16 AC 27 ms
24,088 KB
testcase_17 AC 27 ms
26,020 KB
testcase_18 AC 26 ms
25,840 KB
testcase_19 AC 25 ms
23,980 KB
testcase_20 AC 26 ms
23,680 KB
testcase_21 AC 27 ms
26,144 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];
        for(var i = val - 1; i >= 0; i--)
        {
            for(var j=0;j<=abc[2];j++)
            {
                if (j + 10 * (abc[2] - j) == i) { WriteLine(val - 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