結果

問題 No.3093 Please GCD
ユーザー googol_S0googol_S0
提出日時 2022-04-01 22:52:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 551 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 94,936 KB
平均クエリ数 502.27
最終ジャッジ日時 2024-11-20 11:15:42
合計ジャッジ時間 18,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
70,488 KB
testcase_01 AC 65 ms
70,872 KB
testcase_02 AC 89 ms
78,680 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 437 ms
91,868 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 62 ms
70,872 KB
testcase_11 AC 140 ms
83,416 KB
testcase_12 AC 474 ms
94,808 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 86 ms
78,808 KB
testcase_16 AC 401 ms
92,376 KB
testcase_17 AC 580 ms
94,552 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 410 ms
94,424 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 267 ms
92,660 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#HELP

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
from random import *
Q=[]
for i in range(len(P)):
  Q.insert(randrange(0,len(Q)+1),P[i])
P=Q[:]
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