結果

問題 No.1041 直線大学
ユーザー splash9494splash9494
提出日時 2020-05-02 00:51:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 52,224 KB
最終ジャッジ日時 2024-12-25 19:31:40
合計ジャッジ時間 3,629 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21 WA * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

N = int(input())

ps = []
for _ in range(N):
    ps.append(tuple(map(int, input().split())))

cnt = 2

for p in ps[2:]:
    if (ps[1][1] - ps[0][1])*(ps[1][0] - p[0]) == (ps[1][1] - p[1])*(ps[1][0] - ps[0][0]) :
        cnt += 1
print(cnt)
0