結果
問題 | No.61 リベリオン |
ユーザー | ytft |
提出日時 | 2022-11-07 02:10:33 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,550 bytes |
コンパイル時間 | 375 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 86,712 KB |
最終ジャッジ日時 | 2024-07-20 12:28:19 |
合計ジャッジ時間 | 3,039 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,608 KB |
testcase_01 | AC | 37 ms
52,736 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 38 ms
52,564 KB |
ソースコード
import sys input=lambda:sys.stdin.readline().rstrip() def gcd(a,b): a=abs(a) b=abs(b) if a*b==0: return a+b return gcd(a%b,b%a) if min(a,b,abs(a-b)) else max(a,b) def lcm(a,b): return a*b//gcd(a,b) def euclid(a,b,c): if a==b==0: return [[1,1],-1][c!=0] if a<0 or b<0: temp=euclid(abs(a),abs(b),c) return -1 if temp==-1 else [[-1,1][a<0]*temp[0],[-1,1][b<0]*temp[1]] if a==0: return -1 if c%b else [0,c//b] if b==0: return -1 if c%a else [c//a,0] if b>a: temp=euclid(a,b%a,c) return -1 if temp==-1 else [temp[0]-(b//a)*temp[1],temp[1]] else: temp=euclid(a%b,b,c) return -1 if temp==-1 else [temp[0],temp[1]-(a//b)*temp[0]] def calc(W,H,M,V): ans=[0 for i in range(2)] g=gcd(abs(V),abs(2*W)) right=[H-M,2*W-H-M] for i in range(2): temp=euclid(V,2*W,right[i]) #print(V,2*W,right[i]) ans[i]=-1 if temp==-1 else [temp[0],2*W//gcd(2*W,V)] return ans def solve(): temp=list(map(int,input().split())) temp[:3]=[temp[2]]+temp[:2] g=gcd(abs(temp[7]),abs(temp[8])) temp[0]*=g temp[7]//=g temp[8]//=g flg=0 r=[calc(*temp[i::2]) for i in range(1,3)] for i in range(4): ret=[r[0][i%2],r[1][i//2]] #print(ret) if -1 in ret: continue cal=euclid(ret[0][1],-ret[1][1],ret[1][0]-ret[0][0]) #print(cal) if cal==-1: continue R=cal[0]*ret[0][1]+ret[0][0] R%=lcm(abs(ret[0][1]),abs(ret[1][1])) #print(R,temp[0]) flg|=(R<=temp[0]) print(["Miss","Hit"][flg]) #print(euclid(13,14,4)) N=int(input()) for i in range(N): solve()