백준 11557번 #C언어
-
백준 11557번 : Yangjojang of The Year(C 언어)c c++ 언어 공부 2023. 8. 22. 10:22
https://www.acmicpc.net/problem/11557 11557번: Yangjojang of The Year 입학 OT때 누구보다도 남다르게 놀았던 당신은 자연스럽게 1학년 과대를 역임하게 되었다. 타교와의 조인트 엠티를 기획하려는 당신은 근처에 있는 학교 중 어느 학교가 술을 가장 많이 먹는지 www.acmicpc.net Code: 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 #include #include int main() { int t; int n; scanf("%d", &t); while (t--) { scanf("%d", &n); char result_name[21] = { 0, }; int resul..