結果

問題 No.1882 Areas of Triangle
ユーザー mobchanmobchan
提出日時 2023-05-10 02:01:55
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 765 bytes
コンパイル時間 7,703 ms
コンパイル使用メモリ 167,024 KB
実行使用メモリ 89,428 KB
最終ジャッジ日時 2024-11-26 09:44:42
合計ジャッジ時間 20,204 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
33,920 KB
testcase_01 AC 58 ms
37,280 KB
testcase_02 AC 58 ms
73,088 KB
testcase_03 AC 57 ms
33,664 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 58 ms
30,336 KB
testcase_08 AC 58 ms
30,180 KB
testcase_09 AC 57 ms
30,080 KB
testcase_10 AC 59 ms
30,180 KB
testcase_11 AC 59 ms
30,464 KB
testcase_12 AC 59 ms
30,336 KB
testcase_13 AC 58 ms
30,464 KB
testcase_14 AC 58 ms
30,336 KB
testcase_15 AC 58 ms
30,080 KB
testcase_16 AC 60 ms
30,848 KB
testcase_17 AC 61 ms
30,820 KB
testcase_18 AC 61 ms
30,952 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 57 ms
30,464 KB
testcase_26 AC 58 ms
30,336 KB
testcase_27 AC 58 ms
29,948 KB
testcase_28 AC 58 ms
89,428 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (98 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