結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,284 KB
testcase_01 AC 137 ms
41,380 KB
testcase_02 AC 136 ms
41,280 KB
testcase_03 WA -
testcase_04 AC 135 ms
41,668 KB
testcase_05 WA -
testcase_06 AC 132 ms
41,584 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 133 ms
41,532 KB
testcase_10 AC 135 ms
40,980 KB
testcase_11 AC 131 ms
41,104 KB
testcase_12 AC 134 ms
41,536 KB
testcase_13 AC 134 ms
41,640 KB
testcase_14 AC 136 ms
41,244 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