結果

問題 No.3093 Please GCD
ユーザー nasubi24nasubi24
提出日時 2022-04-01 22:48:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 772 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 94,180 KB
平均クエリ数 557.10
最終ジャッジ日時 2024-11-20 11:05:36
合計ジャッジ時間 11,620 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
93,284 KB
testcase_01 AC 130 ms
87,456 KB
testcase_02 AC 150 ms
93,836 KB
testcase_03 WA -
testcase_04 AC 258 ms
93,496 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 241 ms
93,508 KB
testcase_10 AC 135 ms
93,636 KB
testcase_11 AC 168 ms
93,580 KB
testcase_12 AC 199 ms
88,644 KB
testcase_13 AC 278 ms
93,928 KB
testcase_14 AC 227 ms
90,192 KB
testcase_15 AC 149 ms
93,196 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 227 ms
90,328 KB
testcase_20 AC 237 ms
92,656 KB
testcase_21 AC 291 ms
93,500 KB
testcase_22 AC 252 ms
91,724 KB
testcase_23 WA -
testcase_24 AC 310 ms
93,856 KB
testcase_25 WA -
testcase_26 AC 294 ms
93,540 KB
testcase_27 AC 249 ms
93,636 KB
testcase_28 AC 239 ms
93,444 KB
testcase_29 AC 229 ms
88,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import random
n=int(input())
p=[]
for i in range(2,n+1):
    for j in range(2,i):
        if i%j==0:
            break
    else:
        p.append(i)
now=0
num=1
num2=1
cnt=0
while now!=len(p) and cnt<=450:
    tem=1
    while now!=len(p):
        if tem*p[now]>n:
            break
        tem*=p[now]
        now+=1
    cnt+=1
    print("?",tem,flush=True)
    k=int(input())
    num*=k
    num2*=tem//k
ans=num
num3=1
for i in range(600-cnt):
    cnt2=0
    while cnt2<=100:
        num3=random.randint(1,n//num)
        if math.gcd(ans//num,num3)!=num3 and math.gcd(num2,num3)==1 and num3!=1:
            break
        cnt2+=1
    if math.gcd(num2,num3)==1:
        print("?",num*num3,flush=True)
        ans=max(ans,int(input()))
print("!",ans,flush=True)
0