結果

問題 No.2178 Payable Magic Items
ユーザー ニックネームニックネーム
提出日時 2023-01-06 23:28:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 338 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 79,160 KB
最終ジャッジ日時 2024-05-08 13:40:01
合計ジャッジ時間 6,753 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 39 ms
52,480 KB
testcase_10 AC 38 ms
51,840 KB
testcase_11 WA -
testcase_12 AC 454 ms
77,964 KB
testcase_13 WA -
testcase_14 AC 352 ms
77,312 KB
testcase_15 AC 382 ms
77,312 KB
testcase_16 AC 400 ms
76,928 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 132 ms
76,672 KB
testcase_20 AC 63 ms
69,992 KB
testcase_21 AC 67 ms
73,728 KB
testcase_22 AC 95 ms
76,544 KB
testcase_23 AC 57 ms
66,816 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 182 ms
77,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
x = set()
for _ in range(n):
    s = tuple(map(int, input()))
    y = set()
    for t in x:
        f = g = False
        for i in range(k):
            if s[i]>t[i]: f = True
            if s[i]<t[i]: g = True
        if g: y.add(t)
        if not f: break
    else: y.add(s)
    x = set(y)
print(n-len(x))
0