結果
問題 | No.1223 I hate Golf |
ユーザー | paruf4 |
提出日時 | 2020-09-11 22:06:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,807 bytes |
コンパイル時間 | 2,064 ms |
コンパイル使用メモリ | 200,352 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-08 10:14:29 |
合計ジャッジ時間 | 2,686 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using ull = unsigned long long; #define REP(i, m, n) for (ll(i) = (ll)(m); i < (ll)(n); ++i) #define REP2(i, m, n) for (ll(i) = (ll)(n)-1; i >= (ll)(m); --i) #define rep(i, n) REP(i, 0, n) #define rep2(i, n) REP2(i, 0, n) #define all(hoge) (hoge).begin(), (hoge).end() #define en '\n' using Edge = pair<int, long long>; using Graph = vector<vector<Edge>>; typedef vector<ll> vl; typedef vector<vector<ll>> vvl; typedef vector<vector<vector<ll>>> vvvl; typedef vector<string> vs; typedef vector<vector<string>> vvs; typedef pair<ll, ll> pll; constexpr long long INF = 1LL << 60; constexpr int INF_INT = 1 << 25; const int MOD = 1000000007; // constexpr long long MOD = (ll)1e9 + 7; // constexpr long long MOD = 998244353LL; using ld = long double; static const ld pi = 3.141592653589793L; template <class T> inline void print(T x) { cout << x << '\n'; } template <class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template <class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } // ~~~~~~~~~~~~~~memo~~~~~~~~~~~~~~ // for (int i = 0; i < n; ++i) // int型の2次元配列(h×w要素の)の宣言 // vector<vector<int>> data(h, vector<int>(w)); // rotate(s.begin(), s.begin() + 1, s.end()); // sort(all(a),greater<int>()); // s.substr(0,2) 先頭から2文字切り出す // for (auto it = mp.rbegin();it != mp.rend(); ++it) // vector<vector<vector<int>>> dp(n + 1, vector<vector<int>>(w + 1, vector<int>(k+1, 0))); int main() { ios::sync_with_stdio(false); cin.tie(0); ll n,k,t; cin >> n >> k >> t; if (abs(n) <= t*k) { print("Yes"); } else { print("No"); } return 0; }