結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | Ronlynes |
提出日時 | 2017-01-29 00:29:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 296 bytes |
コンパイル時間 | 459 ms |
コンパイル使用メモリ | 56,280 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 08:06:16 |
合計ジャッジ時間 | 1,008 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <string> using namespace std; int main() { int l, m, n, c[3],ans; cin >> l; cin >> m; cin >> n; c[3] = n%25; c[2] = ((n - c[3])/25+m) % 4; c[1] = ((m - c[2])/4+l) % 10; ans = c[1] + c[2] + c[3]; cout << ans << endl; return 0; }