치춘짱베리굿나이스
200720 알고스팟 문제 본문
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tc = int(input()) | |
for j in range(tc): | |
c = [input().split(' ') for k in range(3)] | |
if(c[0][0] == c[1][0]): | |
if(c[0][1] == c[2][1]): | |
c.append([c[2][0], c[1][1]]) | |
elif(c[1][1] == c[2][1]): | |
c.append([c[2][0], c[0][1]]) | |
elif(c[0][0] == c[2][0]): | |
if(c[0][1] == c[1][1]): | |
c.append([c[1][0], c[2][1]]) | |
elif(c[1][1] == c[2][1]): | |
c.append([c[1][0], c[0][1]]) | |
elif(c[1][0] == c[2][0]): | |
if(c[0][1] == c[1][1]): | |
c.append([c[0][0], c[2][1]]) | |
elif(c[0][1] == c[2][1]): | |
c.append([c[0][0], c[1][1]]) | |
print(' '.join(c[3])) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
tc = int(input()) | |
nn = [] | |
for j in range(tc): | |
n = int(input()) | |
a = n & 0xFF | |
b = (n >> 8) & 0xFF | |
c = (n >> 16) & 0xFF | |
d = (n >> 24) & 0xFF | |
nn.append(0x00000000 | d | (c<<8) | (b<<16) | (a<<24)) | |
for j in range(tc): | |
print(nn[j]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i = int(input()) | |
for j in range(0, i): | |
print('Hello Algospot!') |
'Python > 알고리즘풀이' 카테고리의 다른 글
[백준] 27434 (0) | 2023.07.19 |
---|---|
200204 백준 (0) | 2021.02.08 |
200203 백준 (0) | 2021.02.08 |
Comments