結果
問題 | No.3093 Please GCD |
ユーザー | tassei903 |
提出日時 | 2022-04-01 21:42:47 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,358 bytes |
コンパイル時間 | 230 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 87,000 KB |
平均クエリ数 | 505.00 |
最終ジャッジ日時 | 2024-11-20 08:43:31 |
合計ジャッジ時間 | 9,546 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 128 ms
81,496 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | AC | 125 ms
81,520 KB |
testcase_17 | AC | 174 ms
80,984 KB |
testcase_18 | AC | 184 ms
81,240 KB |
testcase_19 | AC | 131 ms
81,496 KB |
testcase_20 | AC | 143 ms
81,496 KB |
testcase_21 | AC | 177 ms
82,008 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 179 ms
81,496 KB |
testcase_26 | AC | 129 ms
81,112 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 196 ms
81,624 KB |
ソースコード
import sys input = lambda :sys.stdin.readline()[:-1] ni = lambda :int(input()) na = lambda :list(map(int,input().split())) yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES") no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO") ####################################################################### def divisors(n): lower_divisors , upper_divisors = [], [] i = 1 while i*i <= n: if n % i == 0: lower_divisors.append(i) if i != n // i: upper_divisors.append(n//i) i += 1 return lower_divisors + upper_divisors[::-1] def is_prime(n): if n==1: return False if len(divisors(n))==1: return True else: return False p = [] pmax = 10**4 a = [-1]*(pmax+1) for i in range(2,pmax+1): if a[i]==-1: p.append(i) for j in range(i,pmax+1,i): a[j] = i plen = len(p) def f(x): for i in p: if x==i: return 1 if x%i==0: return 0 return 1 def fastfact(x): r = [] while x > 1: p = a[x] c = 0 while a[x]==p: x//=p c += 1 r.append((p, c)) return r n = ni() ans = 1 m = 600 for i in range(m): print("?",p[i],flush=True) s = ni() ans *= s print("!", ans)