結果
問題 | No.1139 Slime Race |
ユーザー | pm |
提出日時 | 2020-07-31 21:34:52 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,072 bytes |
コンパイル時間 | 1,989 ms |
コンパイル使用メモリ | 176,832 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 16:50:06 |
合計ジャッジ時間 | 3,524 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 52 ms
5,376 KB |
testcase_11 | AC | 47 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 53 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 53 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 31 ms
5,376 KB |
testcase_20 | AC | 30 ms
5,376 KB |
testcase_21 | AC | 40 ms
5,376 KB |
testcase_22 | AC | 52 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
#pragma GCC optimize("Ofast") #include <bits/stdc++.h> using namespace std; using ll = long long; using pii = pair<int, int>; using pll = pair<long long, long long>; constexpr char ln = '\n'; constexpr long long MOD = 1000000007LL; constexpr long long INF = 1001001001LL; constexpr long long LINF = 1001001001001001001; #define all(x) (x).begin(),(x).end() #define rep(i,n) for(int i=0;i<(n);i++) #define rept(i, j, n) for(int i=(j); i<(n); i++) template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } int main(){ int n, d; cin >> n >> d; vector<ll> X(n), V(n); rep(i, n)cin >> X[i]; rep(i, n)cin >> V[i]; ll ng = -1, ok = INF; while(ok - ng > 1){ ll mid = (ok + ng) / 2; ll sum = 0; rep(i, n){ sum += V[i] * mid; if(sum>=d)break; } if(mid==2)cout << sum << ln; if(sum>=d)ok = mid; else ng = mid; } cout << ok << ln; }