結果

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

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
N = int(input())
ps = [ tuple(map(int, input().split())) for _ in range(N) ]
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