Notice
Recent Posts
Recent Comments
Link
목록전체 글 (159)
할껀하고놀자
[백준] 1010번 다리놓기
- 파이썬의 factorial library 를 쓰면 빠르게 풀 수 있다. import math,sys sys.stdin = open('1.txt') k = int(input()) for i in range(k): r,n = map(int, input().split()) print(math.factorial(n)//(math.factorial(n-r)*math.factorial(r)))
[IT]/백준
2019. 9. 28. 22:34
[백준] 11179번 2진수 뒤집기 (C++, python3)
C++ code #include #include #include #include #include using namespace std; int main() { ios::sync_with_stdio(0); cin.tie(0); long s; cin >> s; deque list; while (s != 1) { list.push_front(s % 2); s /= 2; } list.push_front(1); deque new_list = list; for (int i = 0; i
[IT]/백준
2019. 9. 21. 21:30