結果
問題 |
No.2681 ゲームセンターの両替
|
ユーザー |
|
提出日時 | 2024-03-20 21:25:08 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 495 bytes |
コンパイル時間 | 2,909 ms |
コンパイル使用メモリ | 242,568 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-30 07:10:30 |
合計ジャッジ時間 | 3,575 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 WA * 10 |
ソースコード
// #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 + 4) / 5 * 5 << "\n"; return 0; } /* */