結果

問題 No.1223 I hate Golf
ユーザー nnionnio
提出日時 2020-11-29 02:06:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 152 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 29,756 KB
実行使用メモリ 4,356 KB
最終ジャッジ日時 2023-10-11 02:15:56
合計ジャッジ時間 1,050 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
4,348 KB
testcase_02 WA -
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 WA -
testcase_07 AC 1 ms
4,348 KB
testcase_08 AC 1 ms
4,348 KB
testcase_09 WA -
testcase_10 AC 1 ms
4,348 KB
testcase_11 AC 1 ms
4,352 KB
testcase_12 AC 1 ms
4,352 KB
testcase_13 WA -
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>

int main(void){
  int N, K, T;
  scanf("%d %d %d", &N, &K, &T);

  if (K * T <= N) printf("Yes");
  else printf("No");

  return 0;
}
0