結果
| 問題 |
No.1041 直線大学
|
| コンテスト | |
| ユーザー |
splash9494
|
| 提出日時 | 2020-05-02 00:47:47 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 293 bytes |
| コンパイル時間 | 476 ms |
| コンパイル使用メモリ | 82,560 KB |
| 実行使用メモリ | 52,480 KB |
| 最終ジャッジ日時 | 2024-12-25 19:15:01 |
| 合計ジャッジ時間 | 3,268 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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 abs( (ps[1][1] - ps[0][1])*(ps[1][0] - p[0]) ) == abs( (ps[1][1] - p[1])*(ps[1][0] - ps[0][0]) ):
cnt += 1
print(cnt)
splash9494