結果

問題 No.1223 I hate Golf
ユーザー shinya python
提出日時 2020-09-15 08:22:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 138 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-06-22 01:31:43
合計ジャッジ時間 932 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 9 WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

line = input().rstrip().split(" ")
N = int(line[0])
K = int(line[1])
T = int(line[2])

if N <= K*T:
    print("Yes")
else:
    print("No")
0