#include <bits/stdc++.h>
using namespace std;
int main() {
int n, x;
cin >> n;
int i = 0;
while (i < n) {
cin >> x;
if (x == 0) {
cout << "YES" << endl;
return 0;
}
++i;
}
cout << "NO" << endl;
return 0;
}
Операция целочисленного деления, div - целая часть, mod - остаток от деления
Результат 5
37 div 10 = 3
58 div 10 = 5
125 div 10 = 12
234 div 10 = 23
873 div 100 = 8
3985 div 1000 = 3
37 mod 10 = 7
58 mod 10 = 8
125 mod 10 = 5
234 mod 10 = 4
873 mod 100 = 73
3985 mod 1000 = 985
8*32*64*40=655 360 бит = 8190 байт = 80 Кбайт