結果

問題 No.3093 Please GCD
ユーザー googol_S0googol_S0
提出日時 2022-04-01 22:20:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 92,816 KB
平均クエリ数 502.23
最終ジャッジ日時 2024-11-20 09:53:45
合計ジャッジ時間 7,668 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
68,696 KB
testcase_01 AC 63 ms
68,696 KB
testcase_02 AC 76 ms
76,120 KB
testcase_03 AC 128 ms
85,336 KB
testcase_04 AC 122 ms
86,496 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 125 ms
87,084 KB
testcase_08 AC 126 ms
87,000 KB
testcase_09 AC 125 ms
85,848 KB
testcase_10 AC 57 ms
68,440 KB
testcase_11 AC 95 ms
83,672 KB
testcase_12 AC 135 ms
84,824 KB
testcase_13 AC 128 ms
86,804 KB
testcase_14 AC 124 ms
86,428 KB
testcase_15 AC 73 ms
76,888 KB
testcase_16 AC 124 ms
85,720 KB
testcase_17 AC 127 ms
84,952 KB
testcase_18 AC 148 ms
86,104 KB
testcase_19 WA -
testcase_20 AC 186 ms
92,816 KB
testcase_21 AC 149 ms
85,464 KB
testcase_22 AC 122 ms
86,832 KB
testcase_23 AC 151 ms
85,592 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 149 ms
85,336 KB
testcase_27 WA -
testcase_28 AC 153 ms
85,160 KB
testcase_29 AC 135 ms
85,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P=[]
N=int(input())
F=[0]*(N+1)
for i in range(2,N+1):
  if F[i]:
    continue
  P.append(i)
  for j in range(i,N+1,i):
    F[j]=1
M=5
i=0
A=[]
C=0
while i<len(P) and C<=595:
  v=1
  while i<len(P) and v*P[i]<=N:
    v*=P[i]
    i+=1
  print('?',v)
  C+=1
  S=int(input())
  for j in range(len(P)):
    if S%P[j]==0:
      A.append(P[j])
Z=1
for i in range(len(A)):
  v=1
  while v*A[i]<=N:
    v*=A[i]
  print('?',v)
  Z*=int(input())
print('!',Z)
0