結果

問題 No.110 しましまピラミッド
ユーザー あかりきあかりき
提出日時 2021-02-13 12:12:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 1,090 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-07-20 15:09:17
合計ジャッジ時間 2,484 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 43 ms
52,096 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 38 ms
52,224 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 41 ms
52,096 KB
testcase_17 AC 40 ms
52,224 KB
testcase_18 AC 39 ms
52,224 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 39 ms
52,096 KB
testcase_21 AC 39 ms
52,096 KB
testcase_22 AC 38 ms
52,480 KB
testcase_23 AC 39 ms
52,096 KB
testcase_24 AC 38 ms
51,712 KB
testcase_25 AC 39 ms
52,480 KB
testcase_26 AC 38 ms
52,608 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 38 ms
52,096 KB
testcase_29 AC 38 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

nw=int(input())
w=list(map(int,input().split()))
nb=int(input())
b=list(map(int,input().split()))
w.sort()
w.reverse()
b.sort()
b.reverse()
L1=[w[0]]
pw1=1
pb1=0
for i in range(100):
  if i%2==0:
    if pb1!=len(b):
      while b[pb1]>=L1[-1]:
        pb1+=1
        if pb1==len(b):
          break
      if pb1!=len(b):
        L1.append(b[pb1])
      else:
        break
    else:
      beak
  else:
    if pw1!=len(w):
      while w[pw1]>=L1[-1]:
        pw1+=1
        if pw1==len(w):
          break
      if pw1!=len(w):
        L1.append(w[pw1])
      else:
        break
    else:
      break
L2=[b[0]]
pw2=0
pb2=1
for i in range(100):
  if i%2==1:
    if pb2!=len(b):
      while b[pb2]>=L2[-1]:
        pb2+=1
        if pb2==len(b):
          break
      if pb2!=len(b):
        L2.append(b[pb2])
      else:
        break
    else:
      break
  else:
    if pw2!=len(w):
      while w[pw2]>=L2[-1]:
        pw2+=1
        if pw2==len(w):
          break
      if pw2!=len(w):
        L2.append(w[pw2])
      else:
        break
    else:
      break
print(max(len(L1),len(L2)))
0