結果

問題 No.200 カードファイト!
ユーザー kimiyukikimiyuki
提出日時 2016-01-16 04:16:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 520 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 11,924 KB
実行使用メモリ 10,168 KB
最終ジャッジ日時 2023-10-19 23:55:45
合計ジャッジ時間 2,129 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,092 KB
testcase_01 AC 33 ms
10,092 KB
testcase_02 AC 32 ms
10,088 KB
testcase_03 AC 32 ms
10,088 KB
testcase_04 AC 29 ms
10,088 KB
testcase_05 AC 30 ms
10,092 KB
testcase_06 AC 30 ms
10,092 KB
testcase_07 AC 30 ms
10,092 KB
testcase_08 AC 30 ms
10,092 KB
testcase_09 WA -
testcase_10 AC 30 ms
10,092 KB
testcase_11 AC 30 ms
10,092 KB
testcase_12 AC 29 ms
10,092 KB
testcase_13 AC 29 ms
10,088 KB
testcase_14 AC 28 ms
10,088 KB
testcase_15 AC 29 ms
10,088 KB
testcase_16 AC 29 ms
10,088 KB
testcase_17 AC 29 ms
10,088 KB
testcase_18 AC 29 ms
10,088 KB
testcase_19 AC 29 ms
10,092 KB
testcase_20 AC 29 ms
10,092 KB
testcase_21 AC 29 ms
10,092 KB
testcase_22 AC 28 ms
10,088 KB
testcase_23 AC 28 ms
10,088 KB
testcase_24 WA -
testcase_25 AC 30 ms
10,092 KB
testcase_26 AC 30 ms
10,088 KB
testcase_27 WA -
testcase_28 AC 29 ms
10,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
n = int(input())
a = int(input())
b = list(map(int,input().split()))
c = int(input())
d = list(map(int,input().split()))
ans = 0
xs, ys = [], []
for _ in range(n):
    if not len(xs): xs = list(sorted(b))
    if not len(ys): ys = list(sorted(d))
    for x in xs:
        zs = list(filter(lambda y: y < x, ys))
        if len(zs):
            xs.remove(x)
            ys.remove(min(zs))
            ans += 1
            break
    else:
        xs.remove(xs[0])
        ys.remove(ys[-1])
print(ans)
0