結果
| 問題 | No.1223 I hate Golf |
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-11 14:21:31 |
| 言語 | C (gcc 15.2.0) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 175 bytes |
| 記録 | |
| コンパイル時間 | 145 ms |
| コンパイル使用メモリ | 36,160 KB |
| 最終ジャッジ日時 | 2026-02-22 13:13:33 |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 3 |
| other | RE * 12 |
ソースコード
#include <stdio.h>
void main(void){
int a = 0 , b = 0 , c = 0;
scanf("%d %d %d",&a,&b,&c);
if(a/c <= b){
printf("Yes");
}else{
printf("No");
}
}
Maeda