SW2 [SW] 8382 방향전환 쉬운 문제, 규칙을 찾는 문제. #include inline int abs(const int& a){ return a >= 0 ? a : -a; } int main() { int T; scanf("%d", &T); int x1, y1, x2, y2; for (int i=1; i ady) ans = 2 * ady; else ans = 2 * adx; int line = abs(adx - ady); if (line % 2) ans += 2 * line - 1; else ans += 2 * line; } printf("%d\n", ans); } return 0; } 2019. 9. 6. [SW] 7732 시간 개념 인풋을 잘 나누어 받고, 자리수를 조정하여 계산할 수 있다면 쉬운 문제에 속한다. #include #include using namespace std; int main() { ios_base::sync_with_stdio(false); cin.tie(0); int T; cin >> T; string current, appointment; int ctime[3]; int atime[3]; int ans[3]; for (int i=1; i> current >> appointment; for (int j = 0, k = 0; j < 7; j += 3, ++k) { ctime[k] = stoi(current.substr(j, 2)); atime[k] = stoi(appointment.substr(j, 2)); .. 2019. 9. 5. 728x90 이전 1 다음