結果

問題 No.1223 I hate Golf
ユーザー Schnee
提出日時 2022-01-02 22:06:04
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 27,776 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 02:33:55
合計ジャッジ時間 945 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>

int main(void){
    char buf[34];
    int n,k,t;
    
    fgets(buf, sizeof(buf), stdin);
    sscanf(buf, "%d %d %d", &n, &k, &t);
    
    if (abs(n)/k < t){
        printf("Yes");
    }
    else{
        printf("No");
    }
    
    return 0;
}
0