結果
問題 | No.2564 衝突予測 |
ユーザー | ゼット |
提出日時 | 2023-12-21 00:13:14 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 772 bytes |
コンパイル時間 | 241 ms |
コンパイル使用メモリ | 82,324 KB |
実行使用メモリ | 80,404 KB |
最終ジャッジ日時 | 2024-09-27 10:19:09 |
合計ジャッジ時間 | 5,895 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,224 KB |
testcase_01 | AC | 37 ms
52,096 KB |
testcase_02 | AC | 36 ms
52,096 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
Q=int(input()) for _ in range(Q): x1,y1,d1=input().split() x2,y2,d2=input().split() x1=int(x1) x2=int(x2) y1=int(y1) y2=int(y2) L=[[1,0],[-1,0],[0,1],[0,-1]] s='RLUD' T={} for i in range(4): T[s[i]]=i v=[0]*2 k=L[T[d2]] for j in range(2): v[j]+=k[j] k=L[T[d1]] for j in range(2): v[j]-=k[j] if v[0]==0 and v[1]==0: print('No') continue if v[0]==0: time=(y1-y2)/(v[1]) if time>0: print('Yes') else: print('No') elif v[1]==0: time=(x1-x2)/(v[0]) if time>0: print('Yes') else: print('No') else: time1=(x1-x2)//(v[0]) time2=(y1-y2)//(v[1]) if time1!=time2: print('No') else: if time1>0: print('Yes') else: print('No')