結果

問題 No.1223 I hate Golf
ユーザー cellcrafty
提出日時 2020-09-11 21:46:44
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 239 bytes
コンパイル時間 627 ms
コンパイル使用メモリ 66,860 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-27 10:58:33
合計ジャッジ時間 1,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cmath>
using namespace std;

int main()
{
    int n, k, t;
    cin >> n >> k >> t;
    bool reachable = false;
    if (abs(n) / k <= t) reachable = true;
    if(reachable) cout << "Yes";
    else cout << "No";
}
0