28841 [백준] 알람 시계, 2884, C/C++ 포인트 24시 -> 0시로 넘어가는 경우만 잘 체크하면 됨 특별히 어려울게 없는것 같은데 정답 비율이 38%인게 의아함 #include typedef int int32_t; int main() { int32_t s32Hour = 0, s32Minute = 0; const int32_t s32DefaultOffsetMinute = 45; const int32_t s32MinutePerHour = 60; const int32_t s32HourPerDay = 24; int32_t s32AlarmHour = 0, s32AlarmMinute = 0; while (1) { scanf_s("%d", &s32Hour); scanf_s("%d", &s32Minute); if ((s32Minute - s32DefaultO.. 2022. 11. 20. 이전 1 다음