結果

問題 No.1139 Slime Race
ユーザー catuppercatupper
提出日時 2020-07-31 21:23:35
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 722 ms
コンパイル使用メモリ 89,248 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-02 08:13:00
合計ジャッジ時間 2,437 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cmath>
#include<vector>
#include<map>
#include<set>
#include<string>
#include<queue>
#include<stack>
#include<complex>
using namespace std;
#define MOD 1000000007
#define MOD2 998244353
#define INF (1<<29)
#define LINF (1LL<<60)
#define EPS (1e-10)
#define PI 3.1415926535897932384626433832795028
typedef long long Int;
typedef pair<Int, Int> P;
typedef long double Real;
typedef complex<Real> CP;

Int n, d, vsum, x, v;

int main(){
    cin >> n >> d;
    for(int i = 0;i < n;i++)cin >> x;
    for(int i = 0;i < n;i++){cin >> v;vsum+=v;}
    Int t = d / vsum;
    if(d % vsum != 0)t++;
    cout << t << endl;
    return 0;
}
0