Submission #2145

#TimeUsernameProblemLanguageResultExecution timeMemory
2145mhkim4886생일수 I (GA4_birthday1)C++98
Compilation error
0 ms0 KiB
#include <stdio.h> typedef struct _Num { int num; int total; } Num; int main() { int out[101], n, qrear = 1, qtail = 1; Num queue[100001]; scanf("%d", &n); for(int i = 1; i <= n; i++) { int k; scanf("%d", &k); qrear = 1; qtail = 1; queue[qtail].num = queue[qtail++].total = 3; queue[qtail].num = queue[qtail++].total = 5; queue[qtail].num = queue[qtail++].total = 8; while(true) { int q = queue[qrear++].total; if(q == k) { out[i] = queue[qrear-1].num; break; } else { if(queue[qrear-1].total + 3 <= k) queue[qtail++] = { queue[qrear-1].num * 10 + 3, queue[qrear-1].total + 3 }; if(queue[qrear-1].total + 5 <= k) queue[qtail++] = { queue[qrear-1].num * 10 + 5, queue[qrear-1].total + 5 }; if(queue[qrear-1].total + 8 <= k) queue[qtail++] = { queue[qrear-1].num * 10 + 8, queue[qrear-1].total + 8 }; } } } for(int i = 1; i <= n; i++) printf("%d\n", out[i]); }

Compilation message (stderr)

birthday1.cpp: In function 'int main()':
birthday1.cpp:22: warning: operation on 'qtail' may be undefined
birthday1.cpp:23: warning: operation on 'qtail' may be undefined
birthday1.cpp:24: warning: operation on 'qtail' may be undefined
birthday1.cpp:36: error: expected primary-expression before '{' token
birthday1.cpp:36: error: expected `;' before '{' token
birthday1.cpp:37: error: expected primary-expression before '{' token
birthday1.cpp:37: error: expected `;' before '{' token
birthday1.cpp:38: error: expected primary-expression before '{' token
birthday1.cpp:38: error: expected `;' before '{' token