結果

問題 No.1223 I hate Golf
ユーザー harurunharurun
提出日時 2020-09-11 21:22:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-12-26 21:49:59
合計ジャッジ時間 1,628 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 12
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
Created on 2020/09/11

@author: harurun
'''
def yn(t):
  if t:print("yes")
  else:print("no")
  return
def YN(t):
  if t:print("YES")
  else:print("NO")
  return
def Yn(t):
  if t:print("Yes")
  else:print("No")
  return

def main():
  import sys
  pin=sys.stdin.readline
  pout=sys.stdout.write
  perr=sys.stderr.write
  
  N,K,T=map(int,pin().split())
  Yn(T*K>=abs(N))
  return 
main()
0