結果
| 問題 | No.3064 Speedrun (Easy) |
| コンテスト | |
| ユーザー |
a01sa01to
|
| 提出日時 | 2025-03-23 00:55:17 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 476 bytes |
| 記録 | |
| コンパイル時間 | 1,784 ms |
| コンパイル使用メモリ | 332,972 KB |
| 実行使用メモリ | 9,224 KB |
| 最終ジャッジ日時 | 2026-07-07 20:32:42 |
| 合計ジャッジ時間 | 3,077 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 11 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#ifdef LOCAL
#include "settings/debug.cpp"
#else
#define Debug(...) void(0)
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;
int main() {
cin.tie(nullptr)->sync_with_stdio(false);
int a, b, c, d, p, q, r, s, t;
cin >> a >> b >> c >> d >> p >> q >> r >> s >> t;
int x = a * p + b * q + c * r + d * s;
cout << (x <= t ? "Yes" : "No") << '\n';
return 0;
}
a01sa01to