結果

問題 No.110 しましまピラミッド
ユーザー pekempeypekempey
提出日時 2015-12-20 22:57:45
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 597 bytes
コンパイル時間 1,843 ms
コンパイル使用メモリ 76,728 KB
実行使用メモリ 76,072 KB
最終ジャッジ日時 2024-12-31 11:13:34
合計ジャッジ時間 4,038 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
75,552 KB
testcase_01 AC 75 ms
75,528 KB
testcase_02 AC 73 ms
75,656 KB
testcase_03 AC 73 ms
75,676 KB
testcase_04 AC 74 ms
75,408 KB
testcase_05 AC 76 ms
75,896 KB
testcase_06 AC 73 ms
75,928 KB
testcase_07 AC 74 ms
76,060 KB
testcase_08 AC 74 ms
75,956 KB
testcase_09 AC 72 ms
76,072 KB
testcase_10 AC 74 ms
75,804 KB
testcase_11 AC 73 ms
75,692 KB
testcase_12 AC 73 ms
75,772 KB
testcase_13 AC 73 ms
75,924 KB
testcase_14 AC 73 ms
75,672 KB
testcase_15 AC 74 ms
75,684 KB
testcase_16 AC 77 ms
75,404 KB
testcase_17 AC 73 ms
75,924 KB
testcase_18 AC 74 ms
75,420 KB
testcase_19 AC 74 ms
75,812 KB
testcase_20 AC 73 ms
75,944 KB
testcase_21 AC 72 ms
75,420 KB
testcase_22 AC 74 ms
75,556 KB
testcase_23 AC 75 ms
75,416 KB
testcase_24 AC 74 ms
75,536 KB
testcase_25 AC 74 ms
75,680 KB
testcase_26 AC 74 ms
75,432 KB
testcase_27 AC 74 ms
76,040 KB
testcase_28 AC 76 ms
75,808 KB
testcase_29 AC 73 ms
75,820 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