結果

問題 No.143 豆
ユーザー tassi_2012tassi_2012
提出日時 2015-02-15 22:46:48
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 26 ms / 1,000 ms
コード長 452 bytes
コンパイル時間 777 ms
コンパイル使用メモリ 109,364 KB
実行使用メモリ 25,824 KB
最終ジャッジ日時 2024-07-23 10:16:27
合計ジャッジ時間 1,879 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
23,948 KB
testcase_01 AC 25 ms
23,904 KB
testcase_02 AC 25 ms
24,028 KB
testcase_03 AC 26 ms
25,824 KB
testcase_04 AC 24 ms
21,940 KB
testcase_05 AC 25 ms
24,160 KB
testcase_06 AC 24 ms
24,112 KB
testcase_07 AC 25 ms
24,084 KB
testcase_08 AC 26 ms
23,856 KB
testcase_09 AC 25 ms
24,032 KB
testcase_10 AC 25 ms
23,984 KB
testcase_11 AC 25 ms
24,028 KB
testcase_12 AC 25 ms
23,904 KB
testcase_13 AC 26 ms
23,984 KB
testcase_14 AC 26 ms
23,904 KB
testcase_15 AC 25 ms
23,928 KB
testcase_16 AC 25 ms
24,028 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 program
{
    public static void Main()
    {
        var str = Console.ReadLine().Split(' ');
        var K = int.Parse(str[0]);
        var N = int.Parse(str[1]);
        var F = int.Parse(str[2]);

        str = Console.ReadLine().Split(' ');
        int sumAge = 0;
        for (int i = 0; i < F; i++)
        {
            sumAge += int.Parse(str[i]);
        }

        Console.WriteLine(K*N-sumAge>=0?K*N-sumAge:-1);
    }
}
0