結果
問題 | No.2355 Unhappy Back Dance |
ユーザー | timi |
提出日時 | 2023-06-16 23:20:24 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 715 bytes |
コンパイル時間 | 344 ms |
コンパイル使用メモリ | 82,660 KB |
実行使用メモリ | 101,776 KB |
最終ジャッジ日時 | 2024-06-24 16:31:40 |
合計ジャッジ時間 | 15,331 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
52,096 KB |
testcase_01 | AC | 45 ms
52,096 KB |
testcase_02 | AC | 42 ms
52,480 KB |
testcase_03 | AC | 42 ms
52,224 KB |
testcase_04 | AC | 43 ms
51,968 KB |
testcase_05 | AC | 42 ms
52,480 KB |
testcase_06 | AC | 160 ms
94,776 KB |
testcase_07 | AC | 159 ms
94,848 KB |
testcase_08 | AC | 150 ms
94,904 KB |
testcase_09 | AC | 151 ms
94,732 KB |
testcase_10 | AC | 1,601 ms
95,232 KB |
testcase_11 | AC | 2,365 ms
94,976 KB |
testcase_12 | AC | 146 ms
94,616 KB |
testcase_13 | AC | 144 ms
95,056 KB |
testcase_14 | AC | 1,831 ms
94,720 KB |
testcase_15 | AC | 41 ms
52,224 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
N=int(input()) AA=[] for i in range(N): x,y=map(int, input().split()) AA.append((x,y)) AA=sorted(AA,key=lambda x: x[1]) AA=sorted(AA,key=lambda x: x[0]) A=[] for i in range(N): A.append((AA[i][0],AA[i][1],i)) D=[[-1]*N for _ in range(N)] E=[0]*N for i in range(N-1): for j in range(i+1,N): if D[i][j]==1: continue D[i][j]=1 x1,y1,p=A[i];x2,y2,q=A[j] C=[] C.append(A[i]) C.append(A[j]) for k in range(j+1,N): x3,y3,r=A[k] if (y3-y1)*(x2-x1)==(x3-x1)*(y2-y1): C.append(A[k]) D[i][k]=1;D[j][k]=1 if len(C)>=4: for _,_,a in C: E[a]=1 if len(C)==3: E[C[0][-1]]=1 E[C[-1][-1]]=1 print(sum(E))