結果

問題 No.2244 Integer Complete
ユーザー shobonvipshobonvip
提出日時 2023-03-08 05:52:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,059 ms / 2,000 ms
コード長 1,156 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 81,804 KB
実行使用メモリ 81,812 KB
最終ジャッジ日時 2023-10-18 05:49:59
合計ジャッジ時間 12,302 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,836 KB
testcase_01 AC 39 ms
53,536 KB
testcase_02 AC 40 ms
53,836 KB
testcase_03 AC 39 ms
53,836 KB
testcase_04 AC 39 ms
53,836 KB
testcase_05 AC 40 ms
53,836 KB
testcase_06 AC 40 ms
53,836 KB
testcase_07 AC 39 ms
53,836 KB
testcase_08 AC 39 ms
53,836 KB
testcase_09 AC 39 ms
53,836 KB
testcase_10 AC 39 ms
53,836 KB
testcase_11 AC 39 ms
53,836 KB
testcase_12 AC 40 ms
53,836 KB
testcase_13 AC 40 ms
53,536 KB
testcase_14 AC 39 ms
53,536 KB
testcase_15 AC 39 ms
53,836 KB
testcase_16 AC 39 ms
53,836 KB
testcase_17 AC 60 ms
75,992 KB
testcase_18 AC 59 ms
75,992 KB
testcase_19 AC 180 ms
81,772 KB
testcase_20 AC 753 ms
79,124 KB
testcase_21 AC 749 ms
80,608 KB
testcase_22 AC 307 ms
76,812 KB
testcase_23 AC 66 ms
73,396 KB
testcase_24 AC 550 ms
76,896 KB
testcase_25 AC 414 ms
76,916 KB
testcase_26 AC 135 ms
77,464 KB
testcase_27 AC 1,059 ms
81,780 KB
testcase_28 AC 303 ms
81,812 KB
testcase_29 AC 1,055 ms
81,780 KB
testcase_30 AC 783 ms
81,804 KB
testcase_31 AC 69 ms
74,032 KB
testcase_32 AC 66 ms
73,388 KB
testcase_33 AC 78 ms
74,044 KB
testcase_34 AC 189 ms
76,760 KB
testcase_35 AC 98 ms
77,436 KB
testcase_36 AC 127 ms
76,752 KB
testcase_37 AC 219 ms
76,864 KB
testcase_38 AC 133 ms
77,480 KB
testcase_39 AC 72 ms
76,400 KB
testcase_40 AC 69 ms
74,860 KB
testcase_41 AC 112 ms
78,136 KB
testcase_42 AC 98 ms
78,136 KB
testcase_43 AC 183 ms
78,400 KB
testcase_44 AC 93 ms
77,436 KB
testcase_45 AC 107 ms
77,436 KB
testcase_46 AC 276 ms
77,568 KB
testcase_47 AC 207 ms
77,512 KB
testcase_48 AC 90 ms
77,700 KB
testcase_49 AC 80 ms
77,700 KB
testcase_50 AC 99 ms
77,700 KB
testcase_51 AC 81 ms
80,712 KB
testcase_52 AC 179 ms
80,696 KB
testcase_53 AC 80 ms
79,388 KB
testcase_54 AC 75 ms
78,164 KB
testcase_55 AC 91 ms
76,628 KB
testcase_56 AC 94 ms
76,364 KB
testcase_57 AC 71 ms
70,836 KB
testcase_58 AC 98 ms
77,016 KB
testcase_59 AC 98 ms
77,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect


def makediv(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]


n, m = map(int,input().split())
a = list(map(int,input().split()))
b = list(map(int,input().split()))

assert 1 <= n <= 30000
assert 1 <= m <= 30000

for i in range(n):
	assert 1 <= a[i] <= 30000

for i in range(m):
	assert 1 <= b[i] <= 30000

for i in range(n-1):
	assert a[i] < a[i+1]

for i in range(m-1):
	assert b[i] < b[i+1]

a2 = [a[i] * a[i] for i in range(n)]
b2 = [b[i] * b[i] for i in range(m)]

if a[0] != 1 or b[0] != 1:
	print(1)
	exit()

c = [0] * 40000
for i in range(n):
	c[a[i]] = 1
for i in range(m):
	c[b[i]] = 1

v = 0
for i in range(1, 40000):
	if c[i] == 0:
		v = i ** 2
		break

k = v
while True:
	mode = 0
	for i in makediv(k):
		j = k // i
		ar = 0
		for x in range(n):
			if a[x] ** 2 <= i < (a[x] + 1) ** 2:
				ar = 1
		br = 0
		for y in range(m):
			if b[y] ** 2 <= j < (b[y] + 1) ** 2:
				br = 1
		if ar == 1 and br == 1:
			mode = 1
	if not mode:
		break
	k += 1

print(k)
0