# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1184241 | ada_kaya | Room Temperature (JOI24_ho_t1) | C++20 | 0 ms | 0 KiB |
#define int long long
#define inf ((int)1e18)
using namespace std;
void solve(){
int n,t;
cin >> n >> t;
int a[n];
for(int i = 0; i < n; i++){
cin >> a[i];
}
/*
int x = a[0] % t;
int y = a[1] % t;
if(x == 0 || y == 0){
}
cout << x << y;*/
cout << 0;
}
int32_t main(){
fast
int x = 1;
//cin >> x;
while(x--){
solve();
cout << endl;
}
}