Notice
Recent Posts
Recent Comments
Link
삐까냥의 파도타기
1010번) 다리 놓기
문제 출처 : https://www.acmicpc.net/problem/1010 순열 조합으로 풀었습니다. import java.util.Scanner;public class Main{ public static void main(String[] args) {Scanner scanner = new Scanner(System.in);int input = scanner.nextInt();for ( int j = 0; j < input; j++ ) {int r = scanner.nextInt();int n = scanner.nextInt();long result = 1l;// n 컴비네이션 r (nCr) 계산if ( r != n ) {if ( n /2 < r ) {r = n - r;}for ( int i = 0..
코딩/백준 알고리즘
2017. 10. 11. 00:02
버블 정렬
public class SortBubble {public static void main(String[] agr){int[] array = {5,7,8,4,6,9,2,3,1};//버블for ( int i = 1; i array[j+1] ) {int temp = array[j];array[j] = array[j+1];array[j+1] = temp;}}}for ( int i = 0; i < array.length; i++ ) {System.out.print(array[i]);}}}
코딩/기타
2017. 10. 10. 23:30