結果
問題 | No.2329 Nafmo、イカサマをする |
ユーザー | masa_aa |
提出日時 | 2023-05-28 15:30:13 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,422 bytes |
コンパイル時間 | 260 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 108,152 KB |
最終ジャッジ日時 | 2024-06-08 07:54:37 |
合計ジャッジ時間 | 3,798 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
51,840 KB |
testcase_01 | AC | 41 ms
57,344 KB |
testcase_02 | AC | 38 ms
52,352 KB |
testcase_03 | AC | 39 ms
52,224 KB |
testcase_04 | AC | 40 ms
52,352 KB |
testcase_05 | WA | - |
testcase_06 | AC | 38 ms
52,608 KB |
testcase_07 | AC | 37 ms
52,480 KB |
testcase_08 | AC | 61 ms
71,040 KB |
testcase_09 | WA | - |
testcase_10 | AC | 40 ms
52,096 KB |
testcase_11 | WA | - |
testcase_12 | AC | 43 ms
58,624 KB |
testcase_13 | WA | - |
testcase_14 | AC | 39 ms
52,224 KB |
testcase_15 | AC | 38 ms
52,608 KB |
testcase_16 | AC | 44 ms
58,752 KB |
testcase_17 | AC | 39 ms
52,280 KB |
testcase_18 | WA | - |
testcase_19 | AC | 60 ms
65,152 KB |
testcase_20 | AC | 50 ms
62,336 KB |
testcase_21 | AC | 46 ms
59,116 KB |
testcase_22 | AC | 55 ms
63,616 KB |
testcase_23 | AC | 44 ms
59,008 KB |
testcase_24 | AC | 39 ms
52,096 KB |
testcase_25 | WA | - |
testcase_26 | AC | 39 ms
52,096 KB |
testcase_27 | AC | 44 ms
57,856 KB |
testcase_28 | AC | 39 ms
52,236 KB |
testcase_29 | AC | 67 ms
76,452 KB |
testcase_30 | AC | 44 ms
58,880 KB |
testcase_31 | AC | 39 ms
52,224 KB |
testcase_32 | AC | 41 ms
57,984 KB |
testcase_33 | AC | 43 ms
58,116 KB |
testcase_34 | AC | 42 ms
57,592 KB |
testcase_35 | AC | 50 ms
61,440 KB |
testcase_36 | AC | 90 ms
78,496 KB |
testcase_37 | AC | 46 ms
60,672 KB |
testcase_38 | AC | 43 ms
59,136 KB |
testcase_39 | AC | 85 ms
77,952 KB |
testcase_40 | AC | 112 ms
84,992 KB |
testcase_41 | AC | 246 ms
108,152 KB |
testcase_42 | AC | 113 ms
84,608 KB |
ソースコード
from bisect import bisect_left, bisect_right # bisect_left(a, x): a[i] >= xとなるような最小のi. # 昇順ソートされたリストaに昇順を崩さずxを挿入できる位置s(0-index)を返す. # a = [1, 3, 5, 7, 9, 11, 13, 15, 17, 19] # s = bisect_left(a,4), s = 2 n, m, k = map(int, input().split()) a = list(map(int, input().split())) + [0] if k == 1: ans = 0 for i in a: if i <= m and ans < i: ans = i print(ans) elif k == 2: b = [x + y for x in a for y in a if x + y <= m] print(max(b)) elif k == 3: b = [x + y for x in a for y in a for z in a if x + y + z <= m] print(max(b)) elif k == 4: b = [x + y + z for x in a for y in a for z in a if x + y + z <= m] b.sort() ans = 0 for i in a: k = bisect_left(b, m - i + 1) if k - 1 >= 0: ans = max(ans, b[k - 1] + i) print(ans) elif k == 5: b = [x + y + z for x in a for y in a for z in a if x + y + z <= m] c = [x + y for x in a for y in a if x + y <= m] b.sort() ans = 0 for i in c: k = bisect_left(b, m - i + 1) if k - 1 >= 0: ans = max(ans, b[k - 1] + i) print(ans) else: b = [x + y + z for x in a for y in a for z in a if x + y + z <= m] b.sort() ans = 0 for i in b: k = bisect_left(b, m - i + 1) if k - 1 >= 0: ans = max(ans, b[k - 1] + i) print(ans)