結果

問題 No.1223 I hate Golf
ユーザー tadanoningen
提出日時 2020-09-13 23:43:24
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 186 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 66,432 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-13 04:46:39
合計ジャッジ時間 1,398 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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;
    if(abs(n/k) <= t) cout << "Yes" << endl;
    else cout << "No" << endl;
}
0