結果

問題 No.1223 I hate Golf
ユーザー tentententen
提出日時 2020-09-12 09:55:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 337 bytes
コンパイル時間 1,989 ms
コンパイル使用メモリ 75,212 KB
実行使用メモリ 41,248 KB
最終ジャッジ日時 2024-06-10 01:07:57
合計ジャッジ時間 4,323 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,120 KB
testcase_01 AC 99 ms
39,856 KB
testcase_02 AC 96 ms
39,848 KB
testcase_03 AC 107 ms
41,020 KB
testcase_04 AC 102 ms
40,188 KB
testcase_05 AC 107 ms
41,096 KB
testcase_06 AC 107 ms
41,248 KB
testcase_07 AC 94 ms
40,016 KB
testcase_08 AC 98 ms
39,844 KB
testcase_09 AC 100 ms
40,364 KB
testcase_10 AC 104 ms
40,096 KB
testcase_11 AC 101 ms
40,484 KB
testcase_12 AC 100 ms
40,288 KB
testcase_13 AC 109 ms
41,172 KB
testcase_14 AC 99 ms
40,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = Math.abs(sc.nextInt());
    	int k = sc.nextInt();
    	long t = sc.nextInt();
    	if (n <= k * t) {
    	    System.out.println("Yes");
    	} else {
    	    System.out.println("No");
    	}
	}
}
0