結果

問題 No.1882 Areas of Triangle
ユーザー mobchanmobchan
提出日時 2023-05-10 02:01:55
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 765 bytes
コンパイル時間 6,566 ms
コンパイル使用メモリ 166,504 KB
実行使用メモリ 48,256 KB
最終ジャッジ日時 2024-05-04 19:45:15
合計ジャッジ時間 10,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
33,408 KB
testcase_01 AC 50 ms
35,456 KB
testcase_02 AC 52 ms
29,824 KB
testcase_03 AC 53 ms
29,696 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (85 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.Collections.Generic;
using System.Linq;

class Program
{
    static void Main(string[] args)
    {
        var input = Console.ReadLine().Split().Select(long.Parse).ToArray();
        var N = (int)input[0];
        var K = input[1];
        var A = Console.ReadLine().Split().Select(int.Parse).ToArray();
        Array.Sort(A);

        var count = 0;
        for (int i = 0; i < N; i++)
        {
            for (int j = i; j < N; j++)
            {
                double S = A[i] * A[j] / 2.0;
                if (S >= K)
                {
                    count += (N - j) * 2;
                    if (i == j) count--;
                    break;
                }
            }
        }
        Console.WriteLine(count);
    }
}
0