알고리즘

[이코테/완전탐색/C++] 시각

데메즈 2023. 1. 6. 22:20
728x90
반응형

#include <bits/stdc++.h>

using namespace std;

int main(void) {
    ios::sync_with_stdio(0);
    cin.tie(0);

    int n;
    cin >> n;

    int result = 0;
    for(int h=1; h<=n; h++){
        for(int m=1; m<=59; m++){
            for(int s=1; s<=59; s++){
                if(h%10==3 || m/10==3 || m%10==3 || s/10==3 || s%10==3) result++;
            }
        }
    }
    cout << result;

    return 0;
}
728x90
반응형