다른 사용자가 제출한 코드를 보면 간결하다.
반면, 내가 짠 코드는 너무 길다.
using System;
class Program
{
static void Main(string[] args)
{
int[] studentsArray = new int[30];
for (int i = 0; i < studentsArray.Length - 2; i++)
{
string stringStudentID = Console.ReadLine();
int studentId = System.Convert.ToInt32(stringStudentID);
studentsArray[i] = studentId;
}
bool[] hasArrays = new bool[30];
for (int i = 0; i < hasArrays.Length; i++)
{
hasArrays[i] = false;
}
for (int i = 1; i < 31; i++)
{
for (int j = 0; j < studentsArray.Length - 2; j++)
{
if (i == studentsArray[j])
{
hasArrays[i - 1] = true;
}
}
}
int notAttendedA = -1;
int notAttendedB = -1;
for (int i = 0; i < hasArrays.Length; i++)
{
if (hasArrays[i] == false)
{
if (notAttendedA == -1)
{
notAttendedA = i + 1;
}
else if (notAttendedB == -1)
{
notAttendedB = i + 1;
}
}
}
if (notAttendedA > notAttendedB)
{
Console.WriteLine(notAttendedB);
Console.WriteLine(notAttendedA);
}
else
{
Console.WriteLine(notAttendedA);
Console.WriteLine(notAttendedB);
}
}
}
문제 출처
https://www.acmicpc.net/problem/5597
'ComputerScience > Coding Test' 카테고리의 다른 글
백준 1546번: 평균 (0) | 2022.11.10 |
---|---|
백준 10807번: 개수 세기 (0) | 2022.11.10 |
백준 25304번: 영수증 (0) | 2022.11.10 |
백준 3003번: 킹, 퀸, 룩, 비숍, 나이트, 폰 (0) | 2022.11.09 |
백준 브론즈 1.. 아직 멀었다. (0) | 2022.04.16 |