結果
問題 | No.1223 I hate Golf |
ユーザー |
![]() |
提出日時 | 2020-09-12 01:34:51 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 570 bytes |
コンパイル時間 | 1,679 ms |
コンパイル使用メモリ | 165,012 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-29 13:01:51 |
合計ジャッジ時間 | 2,312 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 |
ソースコード
// https://yukicoder.me/problems/no/508 #include <bits/stdc++.h> using namespace std; #define int long long #define REP(i, n) FOR(i, 0, n) #define FOR(i, s, n) for (int i = (s), i##_len = (n); i < i##_len; ++i) #define ALL(obj) (obj).begin(), (obj).end() #define ALLR(obj) (obj).rbegin(), (obj).rend() #define CEIL(a, b) ((a - 1) / b + 1) void solve() { int N, K, T; cin >> N >> K >> T; if (K * T < abs(N)) { cout << "No\n"; } else { cout << "Yes\n"; } } signed main() { cin.tie(nullptr)->sync_with_stdio(false); solve(); }