結果
| 問題 |
No.1041 直線大学
|
| コンテスト | |
| ユーザー |
splash9494
|
| 提出日時 | 2020-05-02 00:49:54 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 279 bytes |
| コンパイル時間 | 368 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 52,224 KB |
| 最終ジャッジ日時 | 2024-12-25 19:23:48 |
| 合計ジャッジ時間 | 3,614 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 WA * 16 |
ソースコード
import sys
input = sys.stdin.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)
splash9494