結果

問題 No.1882 Areas of Triangle
ユーザー harapecoharapeco
提出日時 2022-03-30 14:22:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 178 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 143,268 KB
最終ジャッジ日時 2024-11-14 15:10:17
合計ジャッジ時間 29,543 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
58,772 KB
testcase_01 AC 38 ms
142,064 KB
testcase_02 AC 38 ms
59,336 KB
testcase_03 AC 39 ms
143,268 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 36 ms
128,620 KB
testcase_08 AC 37 ms
60,468 KB
testcase_09 AC 36 ms
128,124 KB
testcase_10 AC 36 ms
58,944 KB
testcase_11 AC 37 ms
128,200 KB
testcase_12 AC 35 ms
60,036 KB
testcase_13 AC 36 ms
128,828 KB
testcase_14 AC 36 ms
59,196 KB
testcase_15 AC 36 ms
132,084 KB
testcase_16 AC 45 ms
67,684 KB
testcase_17 AC 60 ms
62,452 KB
testcase_18 AC 93 ms
62,884 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 36 ms
52,948 KB
testcase_26 AC 36 ms
52,004 KB
testcase_27 AC 35 ms
52,208 KB
testcase_28 AC 36 ms
132,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
ans = 0

for i in range(N):
    for j in range(N):
        if K <= A[i]*A[j]/2:
            ans += 1

print(ans)
0