結果

問題 No.218 経験値1.5倍
ユーザー tsuishi
提出日時 2021-01-15 15:28:52
言語 C
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 28,416 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-26 02:15:45
合計ジャッジ時間 1,190 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void) {
    unsigned long     a,b,c;
    int rb,rc,rr;
    scanf( "%ld", &a );
    scanf( "%ld", &b );
    scanf( "%ld", &c );
    rb = (a) / b;
    rr = (rb + rb) / 3;
    rc = rr * c;
//printf("%d(%d)=>%d\n",rb,rr,rc);
    if ( a <= rc ) {
        printf("YES\n");
    } else {
        printf("NO\n");
    }
	return 0;
}
0