結果
問題 | No.1882 Areas of Triangle |
ユーザー | mobchan |
提出日時 | 2023-05-10 01:46:36 |
言語 | C# (.NET 8.0.203) |
結果 |
TLE
|
実行時間 | - |
コード長 | 697 bytes |
コンパイル時間 | 6,493 ms |
コンパイル使用メモリ | 170,008 KB |
実行使用メモリ | 49,828 KB |
最終ジャッジ日時 | 2024-05-04 19:38:53 |
合計ジャッジ時間 | 10,691 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
33,884 KB |
testcase_01 | AC | 46 ms
37,284 KB |
testcase_02 | AC | 47 ms
30,336 KB |
testcase_03 | AC | 48 ms
30,208 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 を復元しました (81 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/
ソースコード
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); } }