結果

問題 No.947 ABC包囲網
ユーザー maspymaspy
提出日時 2020-03-21 20:21:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 703 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,868 KB
最終ジャッジ日時 2024-06-06 02:15:22
合計ジャッジ時間 38,192 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 542 ms
44,480 KB
testcase_01 AC 534 ms
44,732 KB
testcase_02 AC 535 ms
44,488 KB
testcase_03 AC 532 ms
44,864 KB
testcase_04 AC 535 ms
44,232 KB
testcase_05 AC 538 ms
44,484 KB
testcase_06 AC 539 ms
44,608 KB
testcase_07 AC 538 ms
44,356 KB
testcase_08 WA -
testcase_09 AC 532 ms
44,496 KB
testcase_10 AC 534 ms
44,612 KB
testcase_11 AC 534 ms
44,500 KB
testcase_12 AC 531 ms
44,620 KB
testcase_13 AC 529 ms
44,236 KB
testcase_14 AC 532 ms
44,612 KB
testcase_15 WA -
testcase_16 AC 531 ms
44,104 KB
testcase_17 AC 535 ms
44,484 KB
testcase_18 AC 537 ms
44,228 KB
testcase_19 AC 537 ms
44,228 KB
testcase_20 AC 537 ms
44,608 KB
testcase_21 AC 536 ms
44,868 KB
testcase_22 AC 536 ms
44,740 KB
testcase_23 AC 531 ms
44,488 KB
testcase_24 AC 533 ms
44,616 KB
testcase_25 AC 532 ms
44,612 KB
testcase_26 AC 542 ms
44,608 KB
testcase_27 AC 532 ms
44,232 KB
testcase_28 AC 662 ms
44,608 KB
testcase_29 AC 667 ms
44,612 KB
testcase_30 AC 672 ms
44,488 KB
testcase_31 AC 675 ms
44,356 KB
testcase_32 AC 671 ms
44,352 KB
testcase_33 AC 666 ms
44,360 KB
testcase_34 AC 669 ms
44,616 KB
testcase_35 AC 677 ms
44,100 KB
testcase_36 AC 672 ms
44,484 KB
testcase_37 AC 673 ms
44,232 KB
testcase_38 AC 672 ms
44,104 KB
testcase_39 AC 668 ms
44,484 KB
testcase_40 AC 671 ms
44,484 KB
testcase_41 WA -
testcase_42 AC 672 ms
44,612 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 672 ms
44,608 KB
testcase_46 WA -
testcase_47 WA -
testcase_48 AC 664 ms
44,104 KB
testcase_49 AC 667 ms
44,612 KB
testcase_50 WA -
testcase_51 AC 539 ms
44,496 KB
testcase_52 AC 541 ms
44,620 KB
testcase_53 AC 533 ms
44,608 KB
testcase_54 AC 535 ms
44,612 KB
testcase_55 AC 530 ms
44,492 KB
testcase_56 AC 531 ms
44,612 KB
testcase_57 AC 549 ms
44,608 KB
testcase_58 AC 541 ms
44,616 KB
testcase_59 AC 541 ms
44,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

N = int(readline())
XY = np.array(read().split(), np.int64)
X = XY[::2]
Y = XY[1::2]
g = np.abs(np.gcd(X, Y))
Xd = X // g
Yd = Y // g
key = (Xd << 32) + Yd

total = N * (N - 1) * (N - 2) // 6
ng0 = 0
ng1 = 0
ng2 = 0
ng3 = 0
for x, y, k in zip(X, Y, key):
    n = np.count_nonzero(X * y - Y * x > 0)
    same = np.count_nonzero(key == k)
    opp = np.count_nonzero(key == -k)
    ng0 += n * (n - 1) // 2
    ng1 += (same - 1) * n
    ng2 += opp * (N - same - opp)
    ng3 += (same - 1) * opp

ng = ng0 + (ng1 + ng2 + ng3) // 2

print(total - ng)
0