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
반응형
'알고리즘' 카테고리의 다른 글
[이코테/구현/C++] 문자열 재정렬 (0) | 2023.01.06 |
---|---|
[이코테/구현/C++] 왕실의 나이트 (0) | 2023.01.06 |
[백준/완전탐색/C++] 1476번 날짜 계산 (0) | 2023.01.06 |
[이코테/구현/C++] 상하좌우 (0) | 2023.01.05 |
[백준/분할정복/C++] 1992번 쿼드트리 (0) | 2023.01.05 |