結果
問題 | No.2564 衝突予測 |
ユーザー | ゼット |
提出日時 | 2023-12-21 01:13:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 750 bytes |
コンパイル時間 | 203 ms |
コンパイル使用メモリ | 82,388 KB |
実行使用メモリ | 80,852 KB |
最終ジャッジ日時 | 2024-09-27 10:28:09 |
合計ジャッジ時間 | 6,375 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
53,376 KB |
testcase_01 | AC | 38 ms
53,544 KB |
testcase_02 | AC | 39 ms
52,968 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) x1*=2 y1*=2 x2*=2 y2*=2 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] time1=10**30 time2=10**30 if v[0]!=0: time1=(x1-x2)//(v[0]) if v[1]!=0: time2=(y1-y2)//(v[1]) if time1==10**30 and time2<10**20: time1=time2 if time2==10**30 and time1<10**20: time2=time1 if time1==10**30: print('No') else: if time1!=time2: print('No') else: if time1>0: print('Yes') else: print('No')