結果

問題 No.1223 I hate Golf
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-03 09:47:40
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 3,467 ms
コンパイル使用メモリ 77,936 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-04-14 05:52:17
合計ジャッジ時間 6,520 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,308 KB
testcase_01 AC 132 ms
54,176 KB
testcase_02 AC 132 ms
54,036 KB
testcase_03 WA -
testcase_04 AC 134 ms
54,120 KB
testcase_05 WA -
testcase_06 AC 133 ms
54,064 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 136 ms
54,016 KB
testcase_10 AC 135 ms
54,316 KB
testcase_11 AC 134 ms
54,256 KB
testcase_12 AC 139 ms
54,216 KB
testcase_13 AC 134 ms
54,008 KB
testcase_14 AC 136 ms
54,056 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((long)(k * t) >= n ? "Yes":"No");
	    	}

}
0