Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add 17608, 27433, 10870, 2447, 2448 and 11729 en_US junah201 #185

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open
Prev Previous commit
Next Next commit
✨ feat: 15649번 번역 추가
junah201 committed Oct 25, 2024
commit 0a3c4de98d99845e5f6a283b7c9add518a19c88b
3 changes: 3 additions & 0 deletions index
Original file line number Diff line number Diff line change
@@ -374,6 +374,9 @@
"15610": [
"ko_KR-ez_code"
],
"15649": [
"en_US-junah201"
],
"15764": [
"ko_KR-yup0927"
],
42 changes: 42 additions & 0 deletions src/15649/en_US-junah201.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<section id="title">N and M (1)</section>
<section id="description">
<div class="headline">
<h2>Description</h2>
</div>
<div id="problem_description" class="problem-text">
<p>
Given natural numbers \( N \) and \( M \), write a program that generates
all sequences of length \( M \) that satisfy the following conditions.
</p>
<ul>
<li>
Each sequence consists of \( M \) unique natural numbers chosen from 1
to \( N \).
</li>
</ul>
</div>
</section>
<section id="input">
<div class="headline">
<h2>Input</h2>
</div>
<div id="problem_input" class="problem-text">
<p>
The first line contains the natural numbers \( N \) and \( M \) such that
\( 1 \le M \le N \le 8 \).
</p>
</div>
</section>
<section id="output">
<div class="headline">
<h2>Output</h2>
</div>
<div id="problem_output" class="problem-text">
<p>
Print each sequence that meets the problem's requirements on a new line.
Do not print any sequence more than once, and separate the numbers in each
sequence with spaces.
</p>
<p>Print the sequences in lexicographical (dictionary) order.</p>
</div>
</section>