結果

問題 No.1223 I hate Golf
ユーザー Jojikkkkk
提出日時 2020-10-10 01:07:43
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 197 bytes
コンパイル時間 778 ms
コンパイル使用メモリ 77,068 KB
最終ジャッジ日時 2025-01-15 06:07:00
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 4 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<math.h>

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;

return 0;
}
0