結果
| 問題 | No.1223 I hate Golf |
| コンテスト | |
| ユーザー |
Schnee
|
| 提出日時 | 2022-01-02 21:55:27 |
| 言語 | C(gnu17) (gcc 15.2.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 314 bytes |
| 記録 | |
| コンパイル時間 | 54 ms |
| コンパイル使用メモリ | 35,456 KB |
| 実行使用メモリ | 5,888 KB |
| 最終ジャッジ日時 | 2026-07-23 03:11:49 |
| 合計ジャッジ時間 | 1,361 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 7 WA * 5 |
ソースコード
#include <stdio.h>
#include <stdlib.h>
int main(void){
char buffer[34];
int n,k,t;
fgets(buffer, sizeof(buffer), stdin);
sscanf(buffer, "%d %d %d", &n, &k, &t);
if (abs(n) < k*t){
printf("Yes");
}
else{
printf("No");
}
return 0;
}
Schnee