# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1184240 | 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;
}
}