結果
問題 | No.825 賢いお買い物 |
ユーザー | developmaso |
提出日時 | 2019-05-03 23:26:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,617 bytes |
コンパイル時間 | 1,823 ms |
コンパイル使用メモリ | 168,028 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-10 07:09:24 |
合計ジャッジ時間 | 2,502 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i,a,b) for(int i=(int)(a);i<(int)(b);++i) #define rrep(i,a,b) for(int i=(int)(a);i>=(int)(b);--i) #define fore(i,a) for(auto &i:a) #define all(a) (a).begin(),(a).end() #define rall(a) (a).rbegin(),(a).rend() using namespace std; void _main(); int main(){ cin.tie(0); ios::sync_with_stdio(false); _main(); } using ll = long long; constexpr int inf = INT_MAX / 2; constexpr ll infl = 1LL << 60; template<class T>void YES(T condition){ if(condition) cout << "YES" << endl; else cout << "NO" << endl; } template<class T>void Yes(T condition){ if(condition) cout << "Yes" << endl; else cout << "No" << endl; } template<class T>void POSS(T condition){ if(condition) cout << "POSSIBLE" << endl; else cout << "IMPOSSIBLE" << endl; } template<class T>void Poss(T condition){ if(condition) cout << "Possible" << endl; else cout << "Impossible" << endl; } template<class T>bool chmax(T &a, const T &b){ if (a<b){ a = b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b){ if (b<a){ a = b; return 1; } return 0; } template<class T>T gcd(T a, T b){ if (b==0){ return a; }else{ return gcd(b, a%b); }} template<class T>T lcm(T a, T b){ return a / gcd(a, b) * b; } void _main() { int A, B, C; cin >> A >> B >> C; if (A + B <= C) { cout << "Impossible" << endl; return; } int ans = 0; if (A + B - C >= 11 && A >= 11) { int t = (A - 1) / 10; A -= t * 10; B += t; } cout << A << ", " << B << endl; if (B <= C) { ans = (A + B) - C; } else { if (A >= C) ans = C; else ans = A + 10 * (B - C); } cout << ans << endl; }