結果

問題 No.1223 I hate Golf
ユーザー xRS43BofaUEZ5gc
提出日時 2021-03-03 09:47:40
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 3,240 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 54,216 KB
最終ジャッジ日時 2024-10-03 03:08:28
合計ジャッジ時間 5,871 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 8 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	int n = sc.nextInt();
	    	int k = sc.nextInt();
	    	int t = sc.nextInt();
	    	if (n < 0) {n = -n;}

	    	System.out.println((long)(k * t) >= n ? "Yes":"No");
	    	}

}
0