結果
問題 | No.914 Omiyage |
ユーザー | U S |
提出日時 | 2019-10-25 22:09:56 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 854 bytes |
コンパイル時間 | 106 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 379,588 KB |
最終ジャッジ日時 | 2024-09-13 04:04:04 |
合計ジャッジ時間 | 6,584 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
n,m,k = map(int,input().split()) sur_list = [] diff_list = [] diff_plus_list = [] conv_bin_list = [] for i in range(n): sur_list.append(list(map(int,input().split()))) first_row = 0 for i in range(n): first_row += sur_list[i][0] if first_row > k: print("-1") exit() for i in range(n): for j in range(1,m): diff_list.append(sur_list[i][j] - sur_list[i][0]) for i in range(2 ** (n*(m-1))): conv_bin = bin(i) conv_bin_list.append(conv_bin[2::].zfill(n)) for i in range(len(conv_bin_list)): tar_conv = conv_bin_list[i] price = 0 for j in range(n): price += int(tar_conv[j]) * diff_list[j] diff_plus_list.append(price) print(conv_bin_list) print(diff_plus_list) for i in range(k - first_row, 0, -1): if i in diff_plus_list: print(k - (first_row + i)) exit() print(k - first_row)