和前一篇Store Credit一样,是Africa 2010, Qualification Round的题目,现在用于练习
Problem
给出一个用空格分开的单词列表,每行包括L个字母和W个单词。每行仅包含字母和空格,单词之间的空格有且仅有一个。
Input
第一行给出test case的数量N
接下来N行每行包括一个用空格分开的单词列表
Output
对于每个test case,输出一行“Case #x:",之后在该行以相反的顺序输出给定的单词列表。
Sample
Input | Output |
3 |
Case #1: test a is this |
源代码:
方法一:
fin = open('B-large-practice.in', 'r') fout = open('B-large-practice.out', 'w') N = int(fin.readline()) for cases in xrange(N): words = fin.readline().split() L = len(words) if L != 1: for i in xrange(L): if i >= L - i -1: break tmp = words[i] words[i] = words[L - i -1] words[L - i -1] = tmp fout.write("Case #%d:" %(cases + 1)) for i in xrange(L): fout.write(" %s" %(words[i])) fout.write("\n") fin.close() fout.close()
方法二:
也可以在不改变输入的列表的情况下直接用
fout.write("Case #%d:" %(cases + 1)) for i in xrange(L): fout.write(" %s" %(words[-(i + 1)])) fout.write("\n")方法得到结果。