[백준 29546] Файлы (C#, C++) - soo:bak
작성일 :
문제 링크
설명
입력으로 주어지는 이미지 파일의 이름을 순서대로 저장한 후,
주어지는 각 구간에 대해 그 구간의 시작부터 끝까지의 이미지 파일의 이름을 출력하는 문제입니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
namespace Solution {
using System.Text;
class Program {
static void Main(string[] args) {
var sb = new StringBuilder();
var n = int.Parse(Console.ReadLine()!);
var photos = new List<string>();
for (int i = 0; i < n; i++)
photos.Add(Console.ReadLine()!);
var m = int.Parse(Console.ReadLine()!);
for (int i = 0; i < m; i++) {
var input = Console.ReadLine()!.Split(' ');
var l = int.Parse(input[0]);
var r = int.Parse(input[1]);
for (int j = l - 1; j < r; j++)
sb.AppendLine(photos[j]);
}
Console.Write(sb.ToString());
}
}
}
[ C++ ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <bits/stdc++.h>
using namespace std;
typedef vector<string> vs;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n; cin >> n;
vs photos(n);
for (int i = 0; i < n; i++)
cin >> photos[i];
int m; cin >> m;
for (int i = 0; i < m; i++) {
int l, r; cin >> l >> r;
for (int j = l - 1; j < r; j++)
cout << photos[j] << "\n";
}
return 0;
}