結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | kazukimscs |
提出日時 | 2021-11-28 10:15:31 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 287 bytes |
コンパイル時間 | 607 ms |
コンパイル使用メモリ | 63,988 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-01 02:18:50 |
合計ジャッジ時間 | 1,084 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 12 |
ソースコード
#include <iostream> int main () { int L, M, N; int L_ans, M_ans, N_ans; std::cin >> L >> M >> N; N_ans = N % 25; M += N / 25; M_ans = M % 4; L += M * 25 / 100; L_ans = L % 10; std::cout << L_ans + M_ans + N_ans << std::endl; return 0; }