CSES - Datatähti 2025 alku - Results
Submission details
Task:Pizzat
Sender:aatukaj
Submission time:2024-10-28 00:02:41 +0200
Language:C++ (C++20)
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED100
Test results
testverdicttime
#1ACCEPTED0.00 sdetails
#2ACCEPTED0.00 sdetails
#3ACCEPTED0.00 sdetails
#4ACCEPTED0.00 sdetails
#5ACCEPTED0.00 sdetails
#6ACCEPTED0.00 sdetails
#7ACCEPTED0.00 sdetails
#8ACCEPTED0.00 sdetails
#9ACCEPTED0.00 sdetails
#10ACCEPTED0.00 sdetails
#11ACCEPTED0.00 sdetails
#12ACCEPTED0.00 sdetails
#13ACCEPTED0.00 sdetails

Code

// #pragma GCC optimize("O3,unroll-loops")
// #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")

#include <bits/stdc++.h>
#include<ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>

using namespace std;
using namespace __gnu_pbds;

template<class T> using indexed_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;

using ll = long long;
using ull = unsigned long long;
using ld = long double;

using pii = pair<int, int>;
using pll = pair<ll, ll>;

// const ll M = 998244353;
const ll M = 1e9 + 7;
// ll M;


#define all(v) (v).begin(), (v).end()
#define ff first
#define ss second
#define PI 3.141592653589793238462643383279502884L

const ll INFL = 1e18;
const int INF = 1e9;
const ll maxN = 5e5+1;

void solve() {
    int n, m, k;
    cin >> n >> m >> k;
    int p = m*k;
    cout << p/n << ' ' << (p+n-1)/n << '\n';
}
int main() {
    ios_base::sync_with_stdio(0); cin.tie(NULL);
    cout << setprecision(12);


    int tc = 1;
    // cin >>tc;
    while (tc--) solve();

}

Test details

Test 1

Verdict: ACCEPTED

input
3 2 4

correct output
2 3

user output
2 3

Test 2

Verdict: ACCEPTED

input
1 1 1

correct output
1 1

user output
1 1

Test 3

Verdict: ACCEPTED

input
1 1 2

correct output
2 2

user output
2 2

Test 4

Verdict: ACCEPTED

input
2 1 1

correct output
0 1

user output
0 1

Test 5

Verdict: ACCEPTED

input
2 5 7

correct output
17 18

user output
17 18

Test 6

Verdict: ACCEPTED

input
1 1000 1000

correct output
1000000 1000000

user output
1000000 1000000

Test 7

Verdict: ACCEPTED

input
1000 1000 1000

correct output
1000 1000

user output
1000 1000

Test 8

Verdict: ACCEPTED

input
1000 1 1

correct output
0 1

user output
0 1

Test 9

Verdict: ACCEPTED

input
997 995 997

correct output
995 995

user output
995 995

Test 10

Verdict: ACCEPTED

input
997 994 997

correct output
994 994

user output
994 994

Test 11

Verdict: ACCEPTED

input
997 996 995

correct output
994 995

user output
994 995

Test 12

Verdict: ACCEPTED

input
997 996 996

correct output
995 996

user output
995 996

Test 13

Verdict: ACCEPTED

input
997 995 499

correct output
497 498

user output
497 498