結果
| 問題 | 
                            No.1223 I hate Golf
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2021-02-24 21:42:56 | 
| 言語 | C  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 186 bytes | 
| コンパイル時間 | 107 ms | 
| コンパイル使用メモリ | 27,904 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-09-24 22:55:10 | 
| 合計ジャッジ時間 | 690 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 8 WA * 4 | 
ソースコード
#include <stdio.h>
#include <stdlib.h>
int main()
{
	int n,k,t;
	scanf("%d %d %d", &n, &k, &t);
	if(abs(n) <= k*t)
	{
		printf("Yes\n");
	}
	else
	{
		printf("No\n");
	}
	return 0;
}