結果

問題 No.143 豆
ユーザー masaktmasakt
提出日時 2017-03-21 01:22:59
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 524 bytes
コンパイル時間 869 ms
コンパイル使用メモリ 108,524 KB
実行使用メモリ 26,128 KB
最終ジャッジ日時 2024-07-23 10:42:31
合計ジャッジ時間 1,951 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,032 KB
testcase_01 AC 25 ms
23,964 KB
testcase_02 AC 25 ms
26,128 KB
testcase_03 AC 25 ms
23,964 KB
testcase_04 AC 26 ms
24,032 KB
testcase_05 AC 26 ms
26,128 KB
testcase_06 AC 24 ms
21,936 KB
testcase_07 AC 25 ms
23,828 KB
testcase_08 AC 25 ms
23,904 KB
testcase_09 AC 27 ms
25,980 KB
testcase_10 AC 25 ms
24,112 KB
testcase_11 AC 24 ms
23,776 KB
testcase_12 AC 25 ms
25,952 KB
testcase_13 AC 25 ms
24,076 KB
testcase_14 AC 25 ms
25,948 KB
testcase_15 AC 24 ms
21,812 KB
testcase_16 AC 25 ms
25,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
class P
{
    static void Main(string[] _)
    {
        _ = Console.ReadLine().Split(' ');
        int k = int.Parse(_[0]);
        int n = int.Parse(_[1]);
        int f = int.Parse(_[2]);
        _ = Console.ReadLine().Split(' ');
        int[] a = new int[f];
        for (int i = 0; i < f; i++)
        {
            a[i] = int.Parse(_[i]);
        }

        int s = k * n;
        for (int i = 0; i < f; i++)
        {
            s -= a[i];
        }
        Console.WriteLine(s < 0 ? -1 : s);
    }
}
0