結果

問題 No.1882 Areas of Triangle
ユーザー キョウチクキョウチク
提出日時 2022-04-03 14:08:09
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 564 bytes
コンパイル時間 3,052 ms
コンパイル使用メモリ 72,952 KB
実行使用メモリ 86,720 KB
最終ジャッジ日時 2024-11-23 16:25:27
合計ジャッジ時間 23,527 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
42,088 KB
testcase_01 AC 50 ms
85,964 KB
testcase_02 AC 48 ms
41,696 KB
testcase_03 AC 51 ms
42,080 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 101 ms
36,584 KB
testcase_08 AC 106 ms
36,860 KB
testcase_09 AC 53 ms
36,904 KB
testcase_10 AC 51 ms
36,852 KB
testcase_11 AC 48 ms
37,048 KB
testcase_12 AC 50 ms
36,872 KB
testcase_13 AC 49 ms
36,836 KB
testcase_14 AC 51 ms
36,896 KB
testcase_15 AC 50 ms
36,348 KB
testcase_16 AC 61 ms
36,924 KB
testcase_17 AC 84 ms
38,192 KB
testcase_18 AC 100 ms
38,504 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 49 ms
36,352 KB
testcase_26 AC 49 ms
36,336 KB
testcase_27 AC 49 ms
36,496 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
public class test2{
    public static void main(String[] args) throws IOException{
    BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
    String[] line=br.readLine().split(" ");
    int N=Integer.parseInt(line[0]);
    long K=Long.parseLong(line[1]);
    line=br.readLine().split(" ");
    int[] A=new int[N];
    for(int i=0;i<N;i++) A[i]=Integer.parseInt(line[i]);
    int ansN=0;
    for(int i=0;i<N;i++){
      for(int j=0;j<N;j++){
        if(A[i]*A[j]>=K*2) ansN++;
      }
    }
    System.out.println(ansN);
  }
}
0