結果
問題 | No.1152 10億ゲーム |
ユーザー | Kazun |
提出日時 | 2020-08-07 23:19:42 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,150 bytes |
コンパイル時間 | 305 ms |
コンパイル使用メモリ | 82,316 KB |
実行使用メモリ | 84,308 KB |
平均クエリ数 | 19.46 |
最終ジャッジ日時 | 2024-07-17 05:17:06 |
合計ジャッジ時間 | 9,813 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 119 ms
70,184 KB |
testcase_01 | AC | 118 ms
69,700 KB |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | AC | 117 ms
69,836 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | WA | - |
testcase_08 | AC | 117 ms
69,768 KB |
testcase_09 | AC | 118 ms
69,180 KB |
testcase_10 | AC | 119 ms
69,552 KB |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 120 ms
69,304 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | AC | 116 ms
69,040 KB |
testcase_21 | AC | 116 ms
69,260 KB |
testcase_22 | AC | 119 ms
68,944 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | WA | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | WA | - |
testcase_34 | RE | - |
testcase_35 | WA | - |
testcase_36 | RE | - |
testcase_37 | WA | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | WA | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | AC | 118 ms
69,632 KB |
testcase_49 | AC | 117 ms
69,544 KB |
ソースコード
import sys def f(a,b): return (2**a)*(5**b) def h(N): L=[2,5] X=[] for a in L: x=0 while N%a==0: N//=a x+=1 X.append(x) return X def dist(P,Q): return abs(P[0]-Q[0])+abs(P[1]-Q[1]) A,B=map(int,input().split()) G=9 P,Q=h(A),h(B) V=[(-1,0),(0,-1),(1,0),(0,1)] if dist(P,Q)%2==0: S=[7,9] while P!=S: M=dist(P,S) Y=[-1,-1] for u,v in V: R=[P[0]+u,P[1]+v] if dist(R,S)<M and 0<=R[0]<=G and 0<=R[1]<=G: Y=[R[0],R[1]] M=dist(R,S) P=[Y[0],Y[1]] print(f(*P),flush=True) if P==Q: sys.exit() Q=h(int(input())) if P==Q: sys.exit() print(10**9) if Q==[9,9]: sys.exit() Q=h(int(input())) if P==Q: sys.exit() while P!=Q: M=dist(P,Q) Y=[-1,-1] for u,v in V: R=[P[0]+u,P[1]+v] if dist(R,Q)<M and 0<=R[0]<=G and 0<=R[1]<=G: Y=[R[0],R[1]] M=dist(R,Q) P=[Y[0],Y[1]] print(f(*P),flush=True) if P==Q: break Q=h(int(input()))