結果

問題 No.1882 Areas of Triangle
ユーザー mobchanmobchan
提出日時 2023-05-10 01:46:36
言語 C#
(.NET 8.0.203)
結果
TLE  
実行時間 -
コード長 697 bytes
コンパイル時間 7,775 ms
コンパイル使用メモリ 168,768 KB
実行使用メモリ 90,896 KB
最終ジャッジ日時 2024-11-26 09:38:16
合計ジャッジ時間 19,744 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
33,512 KB
testcase_01 AC 53 ms
35,456 KB
testcase_02 AC 52 ms
72,688 KB
testcase_03 AC 51 ms
33,536 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 52 ms
30,168 KB
testcase_08 AC 51 ms
30,204 KB
testcase_09 AC 51 ms
30,208 KB
testcase_10 AC 52 ms
30,336 KB
testcase_11 AC 53 ms
30,208 KB
testcase_12 AC 51 ms
30,208 KB
testcase_13 AC 50 ms
30,336 KB
testcase_14 AC 50 ms
30,208 KB
testcase_15 AC 49 ms
30,464 KB
testcase_16 AC 54 ms
30,720 KB
testcase_17 AC 57 ms
30,976 KB
testcase_18 AC 59 ms
30,976 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 51 ms
30,336 KB
testcase_26 AC 52 ms
30,332 KB
testcase_27 AC 50 ms
30,080 KB
testcase_28 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (99 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 = input[0];
        var K = input[1];
        var A = Console.ReadLine().Split().Select(int.Parse).ToArray();

        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++;
                    if (i != j) count++;
                }
            }
        }
        Console.WriteLine(count);
    }
}
0