結果
| 問題 |
No.825 賢いお買い物
|
| コンテスト | |
| ユーザー |
_____TAB_____
|
| 提出日時 | 2019-05-03 21:34:25 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 401 bytes |
| コンパイル時間 | 792 ms |
| コンパイル使用メモリ | 67,468 KB |
| 最終ジャッジ日時 | 2025-01-07 03:21:49 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 15 WA * 4 |
ソースコード
#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 <= 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_____