結果
| 問題 |
No.2681 ゲームセンターの両替
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-03-20 21:27:09 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 515 bytes |
| コンパイル時間 | 2,337 ms |
| コンパイル使用メモリ | 244,488 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-05 04:08:47 |
| 合計ジャッジ時間 | 3,021 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 23 |
ソースコード
// #pragma GCC optimize("O3,unroll-loops")
#include <bits/stdc++.h>
// #include <x86intrin.h>
using namespace std;
#if __cplusplus >= 202002L
using namespace numbers;
#endif
int main(){
cin.tie(0)->sync_with_stdio(0);
cin.exceptions(ios::badbit | ios::failbit);
int obj, cur;
cin >> obj >> cur;
cur /= 100;
if(cur % 5 >= obj){
cout << "no exchange\n";
return 0;
}
if(cur < obj){
cout << "can't exchange\n";
return 0;
}
cout << (obj - cur % 5 + 4) / 5 * 5 + cur % 5 << "\n";
return 0;
}
/*
*/