結果

問題 No.1223 I hate Golf
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-03 09:51:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 340 bytes
コンパイル時間 3,599 ms
コンパイル使用メモリ 75,388 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-04-14 05:52:29
合計ジャッジ時間 6,269 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,112 KB
testcase_01 AC 135 ms
54,260 KB
testcase_02 AC 136 ms
54,064 KB
testcase_03 AC 135 ms
53,896 KB
testcase_04 AC 134 ms
54,080 KB
testcase_05 AC 136 ms
54,204 KB
testcase_06 AC 132 ms
54,156 KB
testcase_07 AC 132 ms
54,068 KB
testcase_08 AC 134 ms
54,212 KB
testcase_09 AC 134 ms
54,304 KB
testcase_10 AC 136 ms
54,136 KB
testcase_11 AC 135 ms
54,248 KB
testcase_12 AC 119 ms
53,104 KB
testcase_13 AC 132 ms
54,176 KB
testcase_14 AC 133 ms
54,136 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