結果

問題 No.110 しましまピラミッド
ユーザー pekempeypekempey
提出日時 2015-12-20 22:57:45
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 78 ms / 5,000 ms
コード長 597 bytes
コンパイル時間 1,635 ms
コンパイル使用メモリ 77,056 KB
実行使用メモリ 75,904 KB
最終ジャッジ日時 2024-06-10 03:04:34
合計ジャッジ時間 4,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,672 KB
testcase_01 AC 75 ms
75,292 KB
testcase_02 AC 75 ms
75,904 KB
testcase_03 AC 75 ms
75,304 KB
testcase_04 AC 73 ms
75,396 KB
testcase_05 AC 75 ms
75,648 KB
testcase_06 AC 74 ms
75,648 KB
testcase_07 AC 76 ms
75,520 KB
testcase_08 AC 75 ms
75,284 KB
testcase_09 AC 74 ms
75,776 KB
testcase_10 AC 74 ms
75,392 KB
testcase_11 AC 77 ms
75,392 KB
testcase_12 AC 76 ms
75,264 KB
testcase_13 AC 77 ms
75,704 KB
testcase_14 AC 75 ms
75,268 KB
testcase_15 AC 74 ms
75,776 KB
testcase_16 AC 74 ms
75,776 KB
testcase_17 AC 76 ms
75,292 KB
testcase_18 AC 75 ms
75,292 KB
testcase_19 AC 75 ms
75,296 KB
testcase_20 AC 74 ms
75,548 KB
testcase_21 AC 73 ms
75,528 KB
testcase_22 AC 78 ms
75,780 KB
testcase_23 AC 75 ms
75,400 KB
testcase_24 AC 77 ms
75,520 KB
testcase_25 AC 76 ms
75,276 KB
testcase_26 AC 75 ms
75,520 KB
testcase_27 AC 74 ms
75,520 KB
testcase_28 AC 75 ms
75,296 KB
testcase_29 AC 77 ms
75,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

nw = input()
w = map(int, raw_input().split())
nb = input()
b = map(int, raw_input().split())

w.sort(reverse = True)
b.sort(reverse = True)

def solve(nw, w, nb, b):
	i = 0
	j = 0
	res = 0
	under = float('inf')

	updated = True
	k = 0
	while updated:
		updated = False
		if k % 2 == 0:
			while i < nw and w[i] >= under:
				i += 1
			if i < nw:
				under = w[i]
				res += 1
				updated = True
		else:
			while j < nb and b[j] >= under:
				j += 1
			if j < nb:
				under = b[j]
				res += 1
				updated = True
		k += 1
	return res

ans = max(solve(nw, w, nb, b), solve(nb, b, nw, w))
print ans
0