結果

問題 No.1223 I hate Golf
ユーザー Yoshimiki
提出日時 2020-09-19 19:52:53
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 74,572 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-06-23 18:15:34
合計ジャッジ時間 4,810 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 8 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
	    Scanner stdIn = new Scanner(System.in);
	    int N = Math.abs(stdIn.nextInt());
	    int K = stdIn.nextInt();
	    int T = stdIn.nextInt();
	    
	    if(K*T < N){
	        System.out.println("No");
	    }else{
	        System.out.println("Yes");
	    }
	}
}
0