mirror of
https://gitlab.com/mfocko/Codeforces.git
synced 2024-12-21 13:41:22 +01:00
1(A,cpp): solve “Theatre Square”
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
3ad2018645
commit
296c65afe6
1 changed files with 21 additions and 0 deletions
21
1/a.cpp
Normal file
21
1/a.cpp
Normal file
|
@ -0,0 +1,21 @@
|
|||
#include <cstdint>
|
||||
#include <iostream>
|
||||
|
||||
namespace {
|
||||
|
||||
void solve() {
|
||||
int64_t n, m, a;
|
||||
std::cin >> n >> m >> a;
|
||||
|
||||
int64_t n_needed = n / a + (n % a > 0);
|
||||
int64_t m_needed = m / a + (m % a > 0);
|
||||
|
||||
std::cout << (n_needed * m_needed) << "\n";
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
||||
int main(void) {
|
||||
solve();
|
||||
return 0;
|
||||
}
|
Loading…
Reference in a new issue