結果
| 問題 | No.1139 Slime Race |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-07-31 21:48:10 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 530 bytes |
| コンパイル時間 | 231 ms |
| コンパイル使用メモリ | 31,232 KB |
| 実行使用メモリ | 6,948 KB |
| 最終ジャッジ日時 | 2024-07-06 17:35:45 |
| 合計ジャッジ時間 | 1,380 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 WA * 2 |
ソースコード
#include<cstdio>
int main(){
int n; long long d;
scanf("%d%lld",&n,&d);
for(int i = 1; i <= n; i++){
int x;
scanf("%d",&x);
}
long long sum = 0;
for(int i = 1; i <= n; i++){
long long u;
scanf("%lld",&u);
sum += u;
}
long long L = 1, R = d;
long long res = -1;
while(L<=R){
long long M = (L+R)/2;
if(sum*M>=d){
res = M;
R = M-1;
}
else L = M+1;
}
printf("%lld\n",res);
return 0;
}