結果
| 問題 |
No.1446 ハンバーグと納豆ごはん
|
| コンテスト | |
| ユーザー |
heaveneleven521
|
| 提出日時 | 2021-03-31 14:06:10 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 173 bytes |
| コンパイル時間 | 1,617 ms |
| コンパイル使用メモリ | 165,248 KB |
| 実行使用メモリ | 6,824 KB |
| 最終ジャッジ日時 | 2024-12-14 18:41:57 |
| 合計ジャッジ時間 | 4,170 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 RE * 1 |
| other | AC * 12 WA * 10 RE * 11 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int a,b,n,m;
cin >> a >> b >> n >> m;
if(a>b){
cout << b+a/n << endl;
}
else{
cout << a+b/m << endl;
}
}
heaveneleven521