結果

問題 No.1223 I hate Golf
ユーザー koba-e964
提出日時 2020-09-29 15:01:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 180 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 53,496 KB
最終ジャッジ日時 2024-07-03 22:29:37
合計ジャッジ時間 1,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 9 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import sys
readline = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

n, k, t = map(int, readline().split())
print('Yes' if n <= k * t else 'No')
0