結果

問題 No.3093 Please GCD
ユーザー MasKoaTSMasKoaTS
提出日時 2022-04-01 22:04:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,068 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,636 KB
実行使用メモリ 106,804 KB
平均クエリ数 505.00
最終ジャッジ日時 2024-11-20 09:24:04
合計ジャッジ時間 9,927 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 158 ms
102,556 KB
testcase_01 AC 153 ms
102,744 KB
testcase_02 AC 165 ms
103,136 KB
testcase_03 AC 218 ms
105,808 KB
testcase_04 AC 227 ms
106,072 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 211 ms
106,268 KB
testcase_08 AC 206 ms
106,140 KB
testcase_09 AC 213 ms
106,200 KB
testcase_10 AC 154 ms
103,208 KB
testcase_11 AC 186 ms
105,688 KB
testcase_12 AC 247 ms
105,860 KB
testcase_13 AC 214 ms
105,624 KB
testcase_14 AC 227 ms
106,072 KB
testcase_15 AC 163 ms
102,972 KB
testcase_16 AC 209 ms
106,292 KB
testcase_17 WA -
testcase_18 AC 209 ms
106,360 KB
testcase_19 AC 205 ms
105,928 KB
testcase_20 AC 208 ms
105,900 KB
testcase_21 AC 280 ms
106,108 KB
testcase_22 WA -
testcase_23 AC 247 ms
105,688 KB
testcase_24 AC 232 ms
105,940 KB
testcase_25 WA -
testcase_26 AC 212 ms
106,420 KB
testcase_27 AC 237 ms
105,688 KB
testcase_28 AC 212 ms
106,304 KB
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from functools import cmp_to_key
import math
import sys
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10 ** 6)
inp = sys.stdin.readline
input = lambda : inp().rstrip()
getN = lambda : int(inp())
getNs = lambda : map(int, inp().split())
getList = lambda :list(map(int, inp().split()))
getStrs = lambda n : [input() for _ in [0] * n]
def yexit(): print("Yes"); exit(0)
def nexit(): print("No"); exit(0)
pi = 3.141592653589793
mod = 1000000007
MOD = 998244353
INF = 4611686018427387903
dx = [1, 0, -1, 0];	dy = [0, 1, 0, -1]


"""
Main Code
"""

n = getN()
lis = [True] * (n + 1)
prime = []
for i in range(2, n + 1):
	if not(lis[i]):
		continue
	prime.append(i)
	for j in range(i * 2, n + 1, i):
		lis[j] = False

cnt = 0
x = 1
for i in prime:
	if(cnt == 600):
		break
	y = 1
	while(y * i <= n):
		y *= i
	print("? " + str(y), flush = True)
	s = getN()
	x *= s
	cnt += 1
print("! " + str(x), flush = True)
0