結果

問題 No.1223 I hate Golf
コンテスト
ユーザー tadanoningen
提出日時 2020-09-13 23:40:59
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 185 bytes
コンパイル時間 3,127 ms
コンパイル使用メモリ 66,832 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-13 04:46:31
合計ジャッジ時間 1,300 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 WA * 1
権限があれば一括ダウンロードができます

ソースコード

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