2024.6.27 백준(Python) 1924 2007년
2007년문제오늘은 2007년 1월 1일 월요일이다. 그렇다면 2007년 x월 y일은 무슨 요일일까? 이를 알아내는 프로그램을 작성하시오.입력첫째 줄에 빈 칸을 사이에 두고 x(1 ≤ x ≤ 12)와 y(1 ≤ y ≤ 31)이 주어진다. 참고로 2007년에는 1, 3, 5, 7, 8, 10, 12월은 31일까지, 4, 6, 9, 11월은 30일까지, 2월은 28일까지 있다.출력첫째 줄에 x월 y일이 무슨 요일인지에 따라 SUN, MON, TUE, WED, THU, FRI, SAT중 하나를 출력한다.예제 입력 1 1 1예제 출력 1 MON예제 입력 2 3 14예제 출력 2 WED예제 입력 3 9 2예제 출력 3 SUN예제 입력 4 12 25예제 출력 4 TUE 정답 코드# 사용자로부터 월과 일을 공백으로 ..
1971C Clock and Strings
C. Clock and Stringstime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard outputThere is a clock labeled with the numbers 1">11 through 12">1212 in clockwise order, as shown below.In this example, (a,b,c,d)=(2,9,10,6)">(a,b,c,d)=(2,9,10,6)(𝑎,𝑏,𝑐,𝑑)=(2,9,10,6), and the strings intersect.Alice and Bob have four distinct integers a">a𝑎, b">b𝑏, c">c𝑐, ..