結果
問題 |
No.2138 Add Bacon
|
ユーザー |
![]() |
提出日時 | 2022-12-02 21:18:54 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 153 bytes |
コンパイル時間 | 505 ms |
コンパイル使用メモリ | 63,740 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-09 22:21:12 |
合計ジャッジ時間 | 1,402 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 WA * 1 |
other | AC * 18 WA * 7 |
ソースコード
#include <iostream> using namespace std; int main() { int a,b,c,d,e; cin >> a >> b >> c >> d >> e; std::cout << (a+c*d) - (b+c*e) << "\n"; }