結果

問題 No.914 Omiyage
ユーザー GrayCoderGrayCoder
提出日時 2019-10-25 22:30:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 630 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 10,900 KB
実行使用メモリ 7,944 KB
最終ジャッジ日時 2023-10-12 08:34:41
合計ジャッジ時間 1,734 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
7,764 KB
testcase_01 WA -
testcase_02 AC 18 ms
7,716 KB
testcase_03 AC 18 ms
7,756 KB
testcase_04 AC 17 ms
7,724 KB
testcase_05 AC 17 ms
7,788 KB
testcase_06 AC 16 ms
7,804 KB
testcase_07 AC 17 ms
7,820 KB
testcase_08 AC 17 ms
7,836 KB
testcase_09 AC 16 ms
7,872 KB
testcase_10 AC 16 ms
7,832 KB
testcase_11 AC 16 ms
7,716 KB
testcase_12 AC 17 ms
7,712 KB
testcase_13 AC 17 ms
7,724 KB
testcase_14 AC 18 ms
7,764 KB
testcase_15 AC 17 ms
7,876 KB
testcase_16 AC 17 ms
7,944 KB
testcase_17 AC 17 ms
7,748 KB
testcase_18 AC 16 ms
7,816 KB
testcase_19 AC 16 ms
7,832 KB
testcase_20 AC 17 ms
7,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin


def main():
    input = lambda: stdin.readline()[:-1]
    N, M, K = map(int, input().split())
    A = [tuple(map(int, input().split())) for _ in [0] * N]

    for idx in range(M):
        sum_ = 0
        for i in range(N):
            sum_ += A[i][idx]
        if sum_ >= K:
            break

    ans = float('inf')
    for mask in range(1 << N):
        n = sum_
        for i in range(N):
            if mask & 1 << i:
                n -= A[i][idx] - A[i][idx-1]
        if n <= K:
            ans = min(ans, K - n)

    if ans == float('inf'):
        print(-1)
    else:
        print(ans)


main()
0