結果

問題 No.3093 Please GCD
ユーザー nasubi24nasubi24
提出日時 2022-04-01 22:30:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 535 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 94,388 KB
平均クエリ数 989.67
最終ジャッジ日時 2024-11-20 10:12:02
合計ジャッジ時間 12,242 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
70,416 KB
testcase_01 AC 67 ms
75,060 KB
testcase_02 AC 83 ms
78,136 KB
testcase_03 AC 271 ms
93,604 KB
testcase_04 AC 331 ms
93,436 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 314 ms
93,640 KB
testcase_08 AC 332 ms
93,008 KB
testcase_09 AC 273 ms
93,096 KB
testcase_10 AC 61 ms
69,088 KB
testcase_11 AC 103 ms
81,188 KB
testcase_12 WA -
testcase_13 AC 323 ms
93,236 KB
testcase_14 AC 350 ms
93,732 KB
testcase_15 AC 79 ms
77,700 KB
testcase_16 AC 274 ms
93,788 KB
testcase_17 AC 270 ms
92,752 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 268 ms
92,552 KB
testcase_25 AC 312 ms
93,564 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 318 ms
93,248 KB
testcase_29 AC 341 ms
92,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
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
while now!=len(p):
    tem=1
    while now!=len(p):
        if tem*p[now]>n:
            break
        tem*=p[now]
        now+=1
    print("?",tem,flush=True)
    k=int(input())
    num*=k
    num2*=tem//k
ans=num
for i in range(2,(n//num)+1):
    if math.gcd(num2,i)==1:
        print("?",num*i,flush=True)
        ans=max(ans,int(input()))
print("!",ans,flush=True)
0