結果

問題 No.1882 Areas of Triangle
ユーザー キョウチクキョウチク
提出日時 2022-04-03 14:04:59
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 565 bytes
コンパイル時間 3,087 ms
コンパイル使用メモリ 72,876 KB
実行使用メモリ 39,120 KB
最終ジャッジ日時 2024-11-23 16:20:27
合計ジャッジ時間 5,831 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,524 KB
testcase_01 AC 51 ms
36,772 KB
testcase_02 AC 50 ms
36,896 KB
testcase_03 AC 51 ms
36,664 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 52 ms
36,644 KB
testcase_08 AC 52 ms
36,720 KB
testcase_09 AC 52 ms
36,904 KB
testcase_10 AC 50 ms
36,988 KB
testcase_11 AC 48 ms
36,592 KB
testcase_12 AC 52 ms
36,860 KB
testcase_13 AC 52 ms
36,952 KB
testcase_14 AC 51 ms
36,352 KB
testcase_15 AC 51 ms
36,708 KB
testcase_16 AC 63 ms
36,600 KB
testcase_17 AC 93 ms
38,120 KB
testcase_18 AC 105 ms
39,120 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 53 ms
36,412 KB
testcase_26 AC 50 ms
36,884 KB
testcase_27 AC 48 ms
36,544 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]);
    int K=Integer.parseInt(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