結果

問題 No.110 しましまピラミッド
ユーザー mlihua09mlihua09
提出日時 2020-09-14 21:14:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 856 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 54,500 KB
最終ジャッジ日時 2024-06-22 00:55:46
合計ジャッジ時間 2,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,292 KB
testcase_01 AC 31 ms
53,416 KB
testcase_02 AC 32 ms
53,544 KB
testcase_03 AC 31 ms
52,596 KB
testcase_04 AC 30 ms
53,068 KB
testcase_05 AC 30 ms
53,664 KB
testcase_06 AC 28 ms
53,008 KB
testcase_07 AC 28 ms
52,404 KB
testcase_08 AC 28 ms
52,620 KB
testcase_09 AC 28 ms
52,768 KB
testcase_10 AC 29 ms
54,500 KB
testcase_11 AC 31 ms
52,584 KB
testcase_12 AC 28 ms
53,192 KB
testcase_13 AC 28 ms
53,280 KB
testcase_14 AC 28 ms
52,264 KB
testcase_15 AC 27 ms
52,924 KB
testcase_16 AC 28 ms
52,800 KB
testcase_17 AC 28 ms
53,292 KB
testcase_18 AC 31 ms
52,660 KB
testcase_19 AC 29 ms
52,616 KB
testcase_20 AC 29 ms
52,764 KB
testcase_21 AC 28 ms
53,216 KB
testcase_22 AC 28 ms
53,280 KB
testcase_23 AC 29 ms
52,620 KB
testcase_24 AC 28 ms
52,476 KB
testcase_25 AC 28 ms
53,220 KB
testcase_26 AC 28 ms
53,912 KB
testcase_27 AC 28 ms
53,480 KB
testcase_28 AC 27 ms
53,100 KB
testcase_29 AC 27 ms
52,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Nw = int(input())

W = list(map(int, input().split()))
W.sort()

Nb = int(input())

B = list(map(int, input().split()))
B.sort()

from bisect import bisect_left
answ = 0
x = 1
y = 21
while True:
    if x:
        x = 0
        i = bisect_left(W, y)
        if i > 0:
            answ += 1
            y = W[i - 1]
        else:
            break
    else:
        x = 1
        i = bisect_left(B, y)
        if i > 0:
            answ += 1
            y = B[i - 1]
        else:
            break
ansb = 0
x = 0
y = 21
while True:
    if x:
        x = 0
        i = bisect_left(W, y)
        if i > 0:
            ansb += 1
            y = W[i - 1]
        else:
            break
    else:
        x = 1
        i = bisect_left(B, y)
        if i > 0:
            ansb += 1
            y = B[i - 1]
        else:
            break
print(max(ansb, answ))
0