2つのファイルを連結する
テキストが含まれた2つのファイルがあります。最初のファイルには、以下の例のように各行に番号が振られています:
1. Individuals and Interactions Over Processes and Tools
2. Working Software Over Comprehensive Documentation
3. Customer Collaboration Over Contract Negotiation
4. Responding to Change Over Following a Plan
2つ目のファイルは、単に行が順に並んでいるだけです。あなたは、2つ目のファイルを最初のファイルに連結し、番号を続けて付けるよう求められています。
入力は2行で構成されており、1つ目のファイル名と2つ目のファイル名が含まれています。
プログラムはこれらのファイルを統合する必要があります。
Input
doc.txt
second.txt
doc.txt
1. Individuals and Interactions Over Processes and Tools
2. Working Software Over Comprehensive Documentation
3. Customer Collaboration Over Contract Negotiation
4. Responding to Change Over Following a Plan
second.txt
Customer satisfaction through early and continuous software delivery
Accommodate changing requirements throughout the development process
Frequent delivery of working software
Collaboration between the business stakeholders and developers throughout the project
Support, trust, and motivate the people involved
Enable face-to-face interactions
Working software is the primary measure of progress
Agile processes to support a consistent development pace
Attention to technical detail and design enhances agility
Simplicity
Self-organizing teams encourage great architectures, requirements, and designs
Regular reflections on how to become more effective
Resulting doc.txt
1. Individuals and Interactions Over Processes and Tools
2. Working Software Over Comprehensive Documentation
3. Customer Collaboration Over Contract Negotiation
4. Responding to Change Over Following a Plan
5. Customer satisfaction through early and continuous software delivery
6. Accommodate changing requirements throughout the development process
7. Frequent delivery of working software
8. Collaboration between the business stakeholders and developers throughout the project
9. Support, trust, and motivate the people involved
10. Enable face-to-face interactions
11. Working software is the primary measure of progress
12. Agile processes to support a consistent development pace
13. Attention to technical detail and design enhances agility
14. Simplicity
15. Self-organizing teams encourage great architectures, requirements, and designs
16. Regular reflections on how to become more effective
ファイル名は入力で提供され、常に
doc.txt
やsecond.txt
であるとは限らないことに注意してください。Constraints
Time limit: 2 seconds
Memory limit: 512 MB
Output limit: 1 MB