結果
| 問題 | No.1223 I hate Golf |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2021-02-24 21:38:54 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 186 bytes |
| 記録 | |
| コンパイル時間 | 255 ms |
| コンパイル使用メモリ | 36,672 KB |
| 最終ジャッジ日時 | 2026-02-22 06:51:23 |
|
ジャッジサーバーID (参考情報) |
judge1 / 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;
}