結果

問題 No.110 しましまピラミッド
ユーザー roarisroaris
提出日時 2019-12-18 16:51:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 779 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 81,812 KB
実行使用メモリ 54,348 KB
最終ジャッジ日時 2024-07-06 14:26:57
合計ジャッジ時間 2,145 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,156 KB
testcase_01 AC 37 ms
52,336 KB
testcase_02 AC 36 ms
52,816 KB
testcase_03 AC 37 ms
53,216 KB
testcase_04 AC 36 ms
52,240 KB
testcase_05 AC 32 ms
53,020 KB
testcase_06 AC 33 ms
52,144 KB
testcase_07 AC 33 ms
52,908 KB
testcase_08 AC 35 ms
52,636 KB
testcase_09 AC 33 ms
52,564 KB
testcase_10 AC 35 ms
52,880 KB
testcase_11 AC 34 ms
53,688 KB
testcase_12 AC 33 ms
52,520 KB
testcase_13 AC 34 ms
54,348 KB
testcase_14 AC 34 ms
52,528 KB
testcase_15 AC 33 ms
52,496 KB
testcase_16 AC 32 ms
52,724 KB
testcase_17 AC 33 ms
52,644 KB
testcase_18 AC 33 ms
52,956 KB
testcase_19 AC 33 ms
53,132 KB
testcase_20 AC 33 ms
52,000 KB
testcase_21 AC 33 ms
52,332 KB
testcase_22 AC 34 ms
52,336 KB
testcase_23 AC 36 ms
52,872 KB
testcase_24 AC 34 ms
53,476 KB
testcase_25 AC 32 ms
52,980 KB
testcase_26 AC 32 ms
52,484 KB
testcase_27 AC 35 ms
52,648 KB
testcase_28 AC 32 ms
52,708 KB
testcase_29 AC 35 ms
52,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

Nw = int(input())
W = list(map(int, input().split()))
Nb = int(input())
B = list(map(int, input().split()))
W.sort()
B.sort()
ans = 0

cur = W[-1]
c = 1

while True:
    if c%2==1:
        idx = bisect_left(B, cur)
    else:
        idx = bisect_left(W, cur)
    
    if idx==0:
        ans = max(ans, c)
        break
    else:
        if c%2==1:
            cur = B[idx-1]
        else:
            cur = W[idx-1]
        
        c += 1

cur = B[-1]
c = 1

while True:
    if c%2==1:
        idx = bisect_left(W, cur)
    else:
        idx = bisect_left(B, cur)
    
    if idx==0:
        ans = max(ans, c)
        break
    else:
        if c%2==1:
            cur = W[idx-1]
        else:
            cur = B[idx-1]
        
        c += 1

print(ans)
0