結果
問題 | No.2681 ゲームセンターの両替 |
ユーザー | zawakasu |
提出日時 | 2024-03-20 21:19:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,377 bytes |
コンパイル時間 | 1,758 ms |
コンパイル使用メモリ | 200,580 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-30 07:05:36 |
合計ジャッジ時間 | 2,465 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | WA | - |
testcase_09 | AC | 1 ms
6,820 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 1 ms
6,816 KB |
testcase_13 | AC | 1 ms
6,816 KB |
testcase_14 | AC | 1 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 1 ms
6,820 KB |
testcase_17 | AC | 1 ms
6,816 KB |
testcase_18 | AC | 1 ms
6,820 KB |
testcase_19 | AC | 1 ms
6,816 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,816 KB |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> namespace zawa { using i16 = std::int16_t; using i32 = std::int32_t; using i64 = std::int64_t; using i128 = __int128_t; using u8 = std::uint8_t; using u16 = std::uint16_t; using u32 = std::uint32_t; using u64 = std::uint64_t; using usize = std::size_t; } // namespace zawa namespace zawa { void SetFastIO() { std::cin.tie(nullptr)->sync_with_stdio(false); } void SetPrecision(u32 dig) { std::cout << std::fixed << std::setprecision(dig); } } // namespace zawa using namespace zawa; int val[11]{ 1, 5, 10, 50, 100, 500, 1000, 2000, 5000, 100000, (int)2e9 }; long long cnt[10]; int main() { SetFastIO(); int c, y; std::cin >> c >> y; for (int i{} ; i < 10 ; i++) { cnt[i] = (y % (val[i + 1])) / val[i]; y -= cnt[i] * val[i]; } // for (int i{} ; i < 10 ; i++) { // std::cout << cnt[i] << ' '; // } // std::cout << std::endl; // std::cout << y << std::endl; if (cnt[4] >= c) { std::cout << "no exchange " << '\n'; return 0; } for (int i{9} ; i >= 6 ; i--) { cnt[i - 1] += cnt[i] * (val[i] / val[i - 1]); } long long all{cnt[5] * 5}; if (all + cnt[4] < c) { std::cout << "can't exchange" << '\n'; return 0; } long long need{(c - cnt[4] + 4) / 5}; cnt[4] += need * 5; std::cout << cnt[4] << '\n'; }