結果

問題 No.3093 Please GCD
ユーザー PNJPNJ
提出日時 2023-11-25 03:10:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 627 bytes
コンパイル時間 474 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 93,980 KB
平均クエリ数 1003.63
最終ジャッジ日時 2024-09-26 10:10:40
合計ジャッジ時間 8,880 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
68,568 KB
testcase_01 AC 65 ms
69,208 KB
testcase_02 AC 78 ms
74,968 KB
testcase_03 AC 182 ms
93,400 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 202 ms
92,580 KB
testcase_08 WA -
testcase_09 AC 190 ms
93,272 KB
testcase_10 AC 59 ms
68,440 KB
testcase_11 AC 104 ms
79,192 KB
testcase_12 WA -
testcase_13 AC 190 ms
93,392 KB
testcase_14 WA -
testcase_15 AC 75 ms
74,968 KB
testcase_16 AC 192 ms
93,528 KB
testcase_17 AC 196 ms
93,016 KB
testcase_18 AC 191 ms
92,988 KB
testcase_19 AC 195 ms
93,104 KB
testcase_20 AC 208 ms
93,168 KB
testcase_21 AC 192 ms
93,016 KB
testcase_22 AC 194 ms
93,428 KB
testcase_23 AC 210 ms
93,016 KB
testcase_24 WA -
testcase_25 AC 207 ms
93,272 KB
testcase_26 AC 191 ms
93,524 KB
testcase_27 AC 192 ms
93,528 KB
testcase_28 AC 191 ms
93,400 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def Eratosthenes(N):
  is_prime = [1 for i in range(N+1)]
  is_prime[0] = is_prime[1] = 0
  P = []
  for p in range(2,N+1):
    if is_prime[p] == 0:
      continue
    P.append(p)
    for d in range(2,N//p+1):
      q = p*d
      is_prime[q] = 0
  return P

def ques(y):
  print('?',y)

N = int(input())

P = Eratosthenes(N)
D = [0 for i in range(len(P))]

for i in range(len(P)):
  p = P[i]
  for d in range(1,20):
    n = pow(p,d)
    if n > N:
      break
    ques(n)
    z = int(input())
    if n == z:
      D[i] = d
    else:
      break

ans = 1
for i in range(len(P)):
  p,d = P[i],D[i]
  ans *= pow(p,d)
print('!',ans)
0