mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 16:18:48 +00:00
32 lines
504 B
C++
32 lines
504 B
C++
// 70' Code (R38866815)
|
|
|
|
#include <bits/stdc++.h>
|
|
|
|
using namespace std;
|
|
|
|
bool find(int s, int x) {
|
|
while (s) {
|
|
if (s % 10 == x) {
|
|
return true;
|
|
}
|
|
s /= 10;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
int main() {
|
|
int t, n, ans;
|
|
cin >> t;
|
|
for (int i = 0; i < t; i++) {
|
|
cin >> n;
|
|
ans = 0;
|
|
for (int i = 1; i <= n; i++) {
|
|
if (!find(i, 7)) {
|
|
ans++;
|
|
}
|
|
}
|
|
cout << ans << endl;
|
|
}
|
|
return 0;
|
|
}
|