結果

問題 No.1223 I hate Golf
ユーザー ygd.ygd.
提出日時 2020-09-11 21:55:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 80 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 86,364 KB
実行使用メモリ 71,204 KB
最終ジャッジ日時 2023-08-27 14:11:54
合計ジャッジ時間 2,122 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,084 KB
testcase_01 WA -
testcase_02 AC 65 ms
71,204 KB
testcase_03 AC 65 ms
70,876 KB
testcase_04 AC 66 ms
71,008 KB
testcase_05 AC 64 ms
71,204 KB
testcase_06 AC 66 ms
71,064 KB
testcase_07 AC 65 ms
71,044 KB
testcase_08 AC 68 ms
71,092 KB
testcase_09 AC 67 ms
70,944 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 62 ms
71,148 KB
testcase_14 AC 63 ms
71,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K,T = map(int,input().split())
if K*T >= N:
  print("Yes")
else:
  print("No")
0