예제 #1
0
 def input(self):
     from Parser import parseOneInt
     return parseOneInt(open(self.inputPath))
예제 #2
0
 def output(self):
     from Parser import parseOneInt
     for o in parseOneInt(open(self.outputPath)):
         yield o[0]
예제 #3
0
 def output(self):
     from Parser import parseOneInt
     for o in parseOneInt(open(self.outputPath)):
         yield o[0]
예제 #4
0
 def input(self):
     from Parser import parseOneInt
     return parseOneInt(open(self.inputPath))