結果

問題 No.143 豆
ユーザー cccccc
提出日時 2022-07-15 16:31:17
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 318 bytes
コンパイル時間 15,651 ms
コンパイル使用メモリ 169,544 KB
実行使用メモリ 185,040 KB
最終ジャッジ日時 2024-06-27 11:10:27
合計ジャッジ時間 17,350 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
30,584 KB
testcase_01 AC 58 ms
30,336 KB
testcase_02 AC 59 ms
30,720 KB
testcase_03 AC 57 ms
30,336 KB
testcase_04 AC 58 ms
30,428 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 65 ms
30,464 KB
testcase_09 AC 58 ms
30,720 KB
testcase_10 AC 59 ms
30,720 KB
testcase_11 AC 57 ms
30,720 KB
testcase_12 AC 57 ms
30,592 KB
testcase_13 AC 58 ms
30,720 KB
testcase_14 AC 58 ms
30,720 KB
testcase_15 AC 59 ms
30,592 KB
testcase_16 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (92 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Linq;
class Program
{
    static void Main()
    {
        var cnt = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var age = Console.ReadLine().Split().Select(int.Parse).ToArray();
        var ans = ((cnt[0] * cnt[1]) - (age.Sum()));
        Console.WriteLine(ans);
    }
}
0