동영상 정보 구하기: https://github.com/sorrowhill/FFmpegTutorial/blob/master_eng/sample01_scanning.c 일반적으로 말하는 인코딩은 transcoding임ffmpeg transcoding example: https://ffmpeg.org/doxygen/trunk/doc_2examples_2transcoding_8c-example.html 오픈소스 프로젝트 결과물https://github.com/j0n9m1n1/OSS-team
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816..
날짜 계산 성공시간 제한메모리 제한제출정답맞은 사람정답 비율2 초4 MB48733253276268.843%문제준규가 사는 나라는 우리가 사용하는 연도와 다른 방식을 이용한다. 준규가 사는 나라에서는 수 3개를 이용해서 연도를 나타낸다. 각각의 수는 지구, 태양, 그리고 달을 나타낸다.지구를 나타내는 숫자를 E, 태양을 나타내는 숫자를 S, 달을 나타내는 숫자를 M이라고 했을 때, 이 세 수는 서로 다른 범위를 가진다. (1 ≤ E ≤ 15, 1 ≤ S ≤ 28, 1 ≤ M ≤ 19)우리가 알고있는 1년은 준규가 살고있는 나라에서는 1 1 1로 나타낼 수 있다. 1년이 지날 때마다, 세 수는 모두 1씩 증가한다. 만약, 어떤 수가 범위를 넘어가는 경우에는 1이 된다.예를 들어, 15년은 15 15 15로 ..
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 #include #include #define SIZE 100000 long long random(); long long N[SIZE] = { 0, }; long long temp; int cnt = 0; int check = 0; int main() { int i = 0, j = 0; for (i = 0; i
data.txt는 소스폴더 안에 kim 87lee 93park 75choi 83 1234567891011121314151617181920212223242526// ConsoleApplication7.cpp: 콘솔 응용 프로그램의 진입점을 정의합니다.// #include "stdafx.h" int main(){ int score = 0; char name[10] = { " " }; FILE *fpin, *fpout; fpin = fopen("data.txt", "r+"); fpout = fopen("out.txt", "w+"); while (!feof(fpin)) { fscanf(fpin, "%s %d", name, &score); printf("%s %d\n", name, score); fprintf(f..
내문서 -> Starcraft II -> variable.txtDocuments\Starcraft II\ variable.txt 창모드만 아니면 딱히 해상도 설정 할 일이 없을테니 위에 처럼 추가만 해주면 될것 같음 Fullscreenwidth=height= Windowedwindowwidth=windowheight= To change display mode manually:displaymode=0 - Windowed1 - Windowed (Fullscreen)2 - Fullscreen Source: https://us.battle.net/forums/en/sc2/topic/20759136172
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 #include struct STUDENT { char name[10]; int number; int c, ja, py, mo; float age; }a[5]; int main() { FILE *fp, *fp2; char info[50] = { " " }; char temp[100] = { " " }; ..
Contact: j0n9m1n1@gmail.com