Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
29 | 30 | 31 |
Tags
- 2605
- 5086
- 2476
- 정보보호 영재원
- 10833
- 차세대 보안 리더 양성
- 4101
- 2506
- 5586
- Best of the Best
- 영재원
- EOF
- acmicpc
- BoB 7기
- 정보보호 영재교육원
- text
- Python
- 공주대 정보보호
- 11943
- 11109
- boj
- BOB
- 2965
- 1547
- 10995
- 2501
- BoB 후기
- 리뷰
- 차세대 보안 리더 양성 프로그램
- 영재교육원
Archives
- Today
- Total
짱해커가 되어보자
boj 5217 본문
* Solved 기준 브론즈3 단순 풀이
for _ in range(int(input())):
l,n = [],int(input())
for i in range(1,n):
for j in range(i,n):
if(i!=j and i<j and n==i+j): l.append('{} {}'.format(i,j))
print('Pairs for {}: {}'.format(n, ', '.join(l)))
Comments