結果
| 問題 |
No.825 賢いお買い物
|
| コンテスト | |
| ユーザー |
_____TAB_____
|
| 提出日時 | 2019-05-03 21:44:16 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 412 bytes |
| コンパイル時間 | 604 ms |
| コンパイル使用メモリ | 66,436 KB |
| 最終ジャッジ日時 | 2025-01-07 03:22:48 |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 |
ソースコード
#include <iostream>
using namespace std;
int main(){
int A, B, C;
cin >> A >> B >> C;
int t = A + B*10;
int ans = 1e9;
for(int i = 0; i <= min(A+9,C); ++i){
int j = C-i;
if(i+j*10 >= t) continue;
if(B-j > t-i-j*10) continue;
//cerr << i << " " << j << " " << i+j*10 << endl;
ans = min(ans,t-i-j*10);
}
if(ans == 1e9) cout << "Impossible" << endl;
else cout << ans << endl;
}
_____TAB_____