結果
問題 | No.2355 Unhappy Back Dance |
ユーザー | timi |
提出日時 | 2023-06-16 23:12:08 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 655 bytes |
コンパイル時間 | 185 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 99,840 KB |
最終ジャッジ日時 | 2024-06-24 16:17:53 |
合計ジャッジ時間 | 15,293 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
52,736 KB |
testcase_01 | AC | 42 ms
51,968 KB |
testcase_02 | AC | 43 ms
52,096 KB |
testcase_03 | AC | 43 ms
52,352 KB |
testcase_04 | AC | 38 ms
52,352 KB |
testcase_05 | AC | 38 ms
52,352 KB |
testcase_06 | AC | 132 ms
95,080 KB |
testcase_07 | AC | 134 ms
94,404 KB |
testcase_08 | AC | 143 ms
94,464 KB |
testcase_09 | AC | 134 ms
94,640 KB |
testcase_10 | AC | 2,014 ms
95,116 KB |
testcase_11 | AC | 2,028 ms
94,704 KB |
testcase_12 | AC | 143 ms
94,464 KB |
testcase_13 | AC | 145 ms
94,336 KB |
testcase_14 | AC | 2,102 ms
94,592 KB |
testcase_15 | AC | 41 ms
52,096 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()) A=[] for i in range(N): x,y=map(int, input().split()) A.append((x,y,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: C=sorted(C,key=lambda x: x[1]) C=sorted(C,key=lambda x: x[0]) E[C[0][-1]]=1 E[C[-1][-1]]=1 print(sum(E))