Sure, especially if you don't care about the order of the lines.
First, have your mapper emit (line, filename) pairs:
File A:
(0, "A 1")→("A 1", A)
(4, "B 2")→("B 2", A)
(8, "C 3")→("C 3", A)
File B:
(0, "A 1")→("A 1", B)
(4, "C 3")→("C 3", B)
(8, "D 4")→("D 4", B)
(This assumes you're using TextInputFormat as the InputFormat, so the incoming key is the position in the file. You can get the filename with ((FileSplit) context.getInputSplit()).getPath() in the map function.)
In the reduce phase, Hadoop will collect the values (filenames) associated with each key (line), and pass this to your reducer. In your reducer, you should only emit lines that have just the filename, A, and don't emit anything for the others:
("A 1",{A,B})→nothing
("B 2",{A})→"B 2"
("C 3",{A,B})→nothing
("D 4",{B})→nothing
The result will be just the lines that are in only file A.