結果

問題 No.1223 I hate Golf
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-03 09:45:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 3,665 ms
コンパイル使用メモリ 75,540 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-04-14 05:51:56
合計ジャッジ時間 6,682 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,140 KB
testcase_01 AC 132 ms
53,896 KB
testcase_02 AC 129 ms
54,296 KB
testcase_03 WA -
testcase_04 AC 130 ms
54,132 KB
testcase_05 WA -
testcase_06 AC 117 ms
53,132 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 130 ms
54,284 KB
testcase_10 AC 130 ms
54,240 KB
testcase_11 AC 130 ms
54,136 KB
testcase_12 AC 130 ms
54,180 KB
testcase_13 AC 130 ms
54,468 KB
testcase_14 AC 133 ms
54,280 KB
権限があれば一括ダウンロードができます

ソースコード

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(k * t >= n ? "Yes":"No");
	    	}

}
0