結果
| 問題 |
No.2850 Make Slimes
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-08-25 15:47:42 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 131 bytes |
| コンパイル時間 | 1,886 ms |
| コンパイル使用メモリ | 192,160 KB |
| 最終ジャッジ日時 | 2025-02-24 01:35:05 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 RE * 2 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
int main() {
int n,a,b,c,d,ans=0;
cin>>a>>b>>c>>d;
cout<<min(c/a,d/b)<<endl;
}