結果

問題 No.1223 I hate Golf
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-03 09:51:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 3,466 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-10-03 03:08:40
合計ジャッジ時間 6,334 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,336 KB
testcase_01 AC 137 ms
41,264 KB
testcase_02 AC 142 ms
41,472 KB
testcase_03 AC 138 ms
41,364 KB
testcase_04 AC 140 ms
41,248 KB
testcase_05 AC 139 ms
41,268 KB
testcase_06 AC 139 ms
41,168 KB
testcase_07 AC 139 ms
41,248 KB
testcase_08 AC 137 ms
41,620 KB
testcase_09 AC 140 ms
41,048 KB
testcase_10 AC 137 ms
41,376 KB
testcase_11 AC 140 ms
41,232 KB
testcase_12 AC 139 ms
41,564 KB
testcase_13 AC 137 ms
41,040 KB
testcase_14 AC 133 ms
41,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

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

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

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

}
0