結果
| 問題 | 
                            No.1223 I hate Golf
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2021-02-24 21:38:54 | 
| 言語 | C  (gcc 13.3.0)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 186 bytes | 
| コンパイル時間 | 960 ms | 
| コンパイル使用メモリ | 27,008 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-09-24 22:52:58 | 
| 合計ジャッジ時間 | 795 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| 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;
}